|
|
A066609
|
|
a(n) = remainder when 5^n is divided by n^5.
|
|
1
|
|
|
0, 25, 125, 625, 0, 73, 10897, 30177, 4508, 65625, 29672, 36433, 263034, 288873, 575000, 159681, 592030, 1485433, 1639363, 1240625, 250928, 928073, 4040001, 93601, 0, 10915033, 14288075, 16048657, 3176520, 4515625
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
LINKS
|
Harry J. Smith, Table of n, a(n) for n = 1..1000
|
|
EXAMPLE
|
a(6) = 73 as 5^6 = 15625 = (6^5)*2 + 73.
|
|
MATHEMATICA
|
Table[ Mod[5^n, n^5], {n, 1, 30} ]
|
|
PROG
|
(PARI) { for (n=1, 1000, write("b066609.txt", n, " ", 5^n % n^5) ) } \\ Harry J. Smith, Mar 11 2010
|
|
CROSSREFS
|
Sequence in context: A211581 A226231 A211595 * A074006 A073963 A316277
Adjacent sequences: A066606 A066607 A066608 * A066610 A066611 A066612
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Amarnath Murthy, Dec 24 2001
|
|
EXTENSIONS
|
More terms from Robert G. Wilson v, Dec 26 2001
|
|
STATUS
|
approved
|
|
|
|