A075417 Squares of A002282: a(n) = (8*(10^n - 1)/9)^2.
0, 64, 7744, 788544, 78996544, 7901076544, 790121876544, 79012329876544, 7901234409876544, 790123455209876544, 79012345663209876544, 7901234567743209876544, 790123456788543209876544, 79012345678996543209876544, 7901234567901076543209876544, 790123456790121876543209876544
Offset: 0
Examples
a(2) = 88^2 = 7744.
Links
- Colin Barker, Table of n, a(n) for n = 0..100
- Gérard Villemin, Variations sur les carrés.
- Index entries for linear recurrences with constant coefficients, signature (111,-1110,1000).
Crossrefs
Programs
-
PARI
concat(0, Vec(64*x*(1 + 10*x) / ((1 - x)*(1 - 10*x)*(1 - 100*x)) + O(x^20))) \\ Colin Barker, Jul 17 2019
Formula
From Colin Barker, Jul 17 2019: (Start)
G.f.: 64*x*(1 + 10*x)/((1 - x)*(1 - 10*x)*(1 - 100*x)).
a(n) = 111*a(n-1) - 1110*a(n-2) + 1000*a(n-3) for n>2.
a(n) = 64*(10^n-1)^2/81. (End)
From Elmo R. Oliveira, Jul 30 2025: (Start)
E.g.f.: 64*exp(x)*(1 - 2*exp(9*x) + exp(99*x))/81.
a(n) = 64*A002477(n). (End)
Comments