OFFSET
1,2
COMMENTS
Subsequence of ceiling(10^(k/(e-1))). - Max Alekseyev, Sep 08 2013
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..400
EXAMPLE
213 is a term of this sequence because 213^e = 2133987.96483717..., which starts with 213.
PROG
(PARI) e=exp(1); s=1; for(i=1, 50000, s=i^e; while(s-i>11, s=s/10); if(floor(s)==i, printp1(i, ", "), ))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Randy L. Ekl, Aug 12 2007
EXTENSIONS
3 more terms from Ryan Propper, Dec 30 2007
a(11)-a(14) from Donovan Johnson, Oct 29 2010
Terms a(15) onward from Max Alekseyev, Sep 08 2013
STATUS
approved