OFFSET
1,2
LINKS
Ray Chandler, Table of n, a(n) for n=1..41
FORMULA
If n is a prime < 29 then a(n) = 11^(n-1). - Chandler
If n is a prime >= 29 then a(n) = 0. - Vladeta Jovovic, Aug 20 2002
MATHEMATICA
For[n=1, n<10, n++, k := 10^(n-1); While[Not[Length[Divisors[k]] == n], k++ ]; Print[k]] (Steinerberger)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 12 2002
EXTENSIONS
a(6)-a(18) from Vladeta Jovovic, Aug 20 2002
a(6) confirmed by Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 08 2003
a(7)-a(10) confirmed by Stefan Steinerberger, Feb 06 2006
a(15) corrected, and a(11)-a(14), a(16)-a(18) confirmed by Ray Chandler, Feb 10 2009
Edited by N. J. A. Sloane, Feb 14 2009 at the suggestion of Ray Chandler.
STATUS
approved