|
| |
|
|
A108861
|
|
Numbers n such that n divides the sum of the digits of 2^n * n!.
|
|
0
|
|
|
|
1, 2, 3, 5, 6, 9, 27, 81, 126, 159, 205, 252, 254, 267, 285, 675, 1053, 1086, 1125, 1146, 2007, 5088, 5382, 5448, 14652, 23401, 23574, 24009, 41004, 66789, 67482, 111480, 866538
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,2
|
|
|
COMMENTS
|
Next term after 5448 is greater than 10,000.
a(34) > 10^6. [From D. S. McNeil, Mar 03 2009]
|
|
|
LINKS
|
Table of n, a(n) for n=1..33.
|
|
|
EXAMPLE
|
675 is a term because the sum of the digits of 2^675 * 675!, 7425, is divisible by 675.
|
|
|
MATHEMATICA
|
Do[If[Mod[Plus @@ IntegerDigits[2^n * n! ], n] == 0, Print[n]], {n, 1, 10000}]
|
|
|
CROSSREFS
|
Sequence in context: A079371 A131761 A055690 * A051896 A061939 A029503
Adjacent sequences: A108858 A108859 A108860 * A108862 A108863 A108864
|
|
|
KEYWORD
|
base,hard,more,nonn
|
|
|
AUTHOR
|
Ryan Propper (rpropper(AT)stanford.edu), Jul 11 2005
|
|
|
EXTENSIONS
|
a(25) - a(33) from D. S. McNeil, Mar 03 2009
|
|
|
STATUS
|
approved
|
| |
|
|