OFFSET
0,2
COMMENTS
These terms k = x.y satisfy Diophantine equation x.y = (x+y)^2, when x and y have the same number of digits, "." means concatenation, and y may not begin with 0. So, this is a subsequence of A350870 and A238237. - Bernard Schott, Jan 20 2022
LINKS
Index entries for linear recurrences with constant coefficients, signature (11100,-11100000,1000000000).
FORMULA
a(n) = (10^n+1)^2 * 10^(2*n) / 4.
From Bernard Schott, Jan 20 2022: (Start)
a(n) = A037156(n)^2.
a(n) = A350869(n) + 10^(3*n). (End)
From Elmo R. Oliveira, Nov 19 2025: (Start)
G.f.: (1 - 8075*x + 3025000*x^2)/((1-100*x)*(1-1000*x)*(1-10000*x)).
E.g.f.: exp(100*x)*(1 + 2*exp(900*x) + exp(9900*x))/4.
a(n) = 11100*a(n-1) - 11100000*a(n-2) + 1000000000*a(n-3). (End)
EXAMPLE
a(1) = Sum_{i=0..10} i^3 = (Sum_{i=0..10} i)^2 = 3025.
PROG
(PARI) sumcu(n) = for(x=0, n, y=10^x; z=y^2*(y+1)^2/4; (print1(z", "))) \\ Cino Hilliard, Jun 18 2007
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Jul 02 2008 at the suggestion of R. J. Mathar
STATUS
approved
