login
A114777
a(n) = floor( {n concatenated with n n times }^(1/2) * 10 )^2.
0
100, 2116, 33124, 443556, 5555449, 66650896, 777740544, 8888718400, 99999515529, 1010101010089161070864, 111111111110888888888889, 12121212121205459165906769, 1313131313131245483985582729, 141414141414141058690681961329, 15151515151515144862248400372996
OFFSET
1,1
FORMULA
Floor[ {n concatenated with n n times }^(1/2)*10]^2 - Michael Keagel (mjk374(AT)psu.edu), Feb 12 2006
EXAMPLE
a(3) = floor(333^(1/2)*10)^2 = 33124.
MAPLE
a:= n-> floor(sqrt(parse(cat(n$n)))*10)^2:
seq(a(n), n=1..15); # Alois P. Heinz, Nov 13 2024
MATHEMATICA
Table[Floor[10 *Surd[FromDigits[Flatten[IntegerDigits/@ PadRight[ {}, n, n]]], 2]]^2, {n, 15}] (* Georg Fischer, Nov 13 2024 *)
CROSSREFS
Cf. A114776.
Sequence in context: A203283 A231139 A295589 * A128988 A075822 A250845
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 17 2005
EXTENSIONS
Corrected and extended by Michael Keagel (mjk374(AT)psu.edu), Feb 12 2006
Offset changed to 1; a(12) corrected and more terms from Georg Fischer, Nov 13 2024
STATUS
approved