|
Search: id:A109676
|
|
|
| A109676 |
|
Numbers n such that the sum of the digits of (n! - 1) is divisible by n. |
|
+0 1
|
| |
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Next term after 42862 is greater than 100,000.
|
|
EXAMPLE
|
The digits of 5405! - 1 sum to 86480 and 86480 is divisible by 5405, so 5405 is in the sequence.
|
|
MATHEMATICA
|
Do[k = n! - 1; s = Plus @@ IntegerDigits[k]; If[Mod[s, n] == 0, Print[n]], {n, 1, 10^5}]
|
|
CROSSREFS
|
Sequence in context: A033682 A020283 A137186 this_sequence A087239 A032653 A063308
Adjacent sequences: A109673 A109674 A109675 this_sequence A109677 A109678 A109679
|
|
KEYWORD
|
base,hard,more,nonn
|
|
AUTHOR
|
Ryan Propper (rpropper(AT)stanford.edu), Aug 06 2005
|
|
|
Search completed in 0.002 seconds
|