|
| |
|
|
A101701
|
|
Numbers n such that n = sum of the reversals of divisors of n.
|
|
1
| | |
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Next term is greater than 37*10^7.
|
|
|
EXAMPLE
| 18368601 is in the sequence because divisors of 18368601
are: 1,3,6122867,18368601 and 18368601=1+3+7682216+10686381.
|
|
|
MATHEMATICA
| Do[h = Divisors[n]; l = Length[h]; If[n == Sum[ FromDigits[Reverse[IntegerDigits[h[[k]]]]], {k, l}], Print[n]], {n, 370000000}]
|
|
|
CROSSREFS
| Cf. A069942, A072228.
Sequence in context: A115946 A082176 A178285 * A092011 A072679 A147705
Adjacent sequences: A101698 A101699 A101700 * A101702 A101703 A101704
|
|
|
KEYWORD
| base,more,nonn
|
|
|
AUTHOR
| Farideh Firoozbakht (mymontain(AT)yahoo.com), Dec 23 2004
|
|
|
EXTENSIONS
| a(6) from Donovan Johnson (donovan.johnson(AT)yahoo.com), Dec 07 2008
|
| |
|
|