OFFSET
1,1
COMMENTS
2178 has the property that any number of concatenations of it with itself and its digit reversal have the same set of distinct prime factors.
EXAMPLE
a(2) = tau(21782178) = 72.
MATHEMATICA
k = 0; Do[k = (10^4 * k) + 2178; Print[DivisorSigma[0, k]], {n, 1, 30}] (* Ryan Propper, Aug 28 2005 *)
Table[DivisorSigma[0, FromDigits[PadRight[{}, 4n, {2, 1, 7, 8}]]], {n, 30}] (* Harvey P. Dale, Jun 23 2014 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 11 2005
EXTENSIONS
More terms from Ryan Propper, Aug 28 2005
STATUS
approved