login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A068124
Smallest number whose n-th power begins with n n's; n-th root of A068123.
3
1, 15, 322, 1452, 88909, 2955639, 25880899, 415533397, 215443469, 25144122307797731891, 1891851504074453542774, 389309950637308214633931, 71656315545775490294342978, 8696027755149851609001142655
OFFSET
1,2
COMMENTS
a(n) = A068123(n)^(1/n).
LINKS
EXAMPLE
a(3) = 322 as 322^3 = 33386248 begins with 333.
MATHEMATICA
a[n_] := Block[{t = Flatten@Table[IntegerDigits@n, {n}], m, v, h=0}, m = Length@t; z = FromDigits@t; While[ Take[ IntegerDigits[(v = Ceiling[(z 10^h) ^ (1/n)])^n], m] != t, h++]; v]; Array[a, 30] (* Giovanni Resta, Jul 12 2016 *)
CROSSREFS
Cf. A068123.
Sequence in context: A132392 A131699 A077738 * A094399 A219253 A119296
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Feb 21 2002
EXTENSIONS
Corrected and extended by David Wasserman, Dec 23 2002
More terms from Sascha Kurz, Feb 09 2003
Entry revised by N. J. A. Sloane, Aug 14 2006
STATUS
approved