A342709 12-gonal (dodecagonal) square numbers.
1, 64, 3025, 142129, 6677056, 313679521, 14736260449, 692290561600, 32522920134769, 1527884955772561, 71778070001175616, 3372041405099481409, 158414167969674450625, 7442093853169599697984, 349619996931001511354641, 16424697761903901433970161
Offset: 1
Examples
142129 = 169*(5*169-4) = 377^2, so 142129 is the 169th 12-gonal number and the 377th square, hence 142129 is a term.
Links
- Index entries for linear recurrences with constant coefficients, signature (48,-48,1).
Crossrefs
Programs
-
Maple
with(combinat): seq(fibonacci(4*n-2)^2, n=1..16);
-
Mathematica
Table[Fibonacci[4*n - 2]^2, {n, 1, 16}] (* Amiram Eldar, Mar 19 2021 *)
-
PARI
a(n) = fibonacci(4*n-2)^2; \\ Michel Marcus, Mar 21 2021
Formula
G.f.: x*(1 + 16*x + x^2)/((1 - x)*(1 - 47*x + x^2)). - Stefano Spezia, Mar 20 2021
a(n) = 48*a(n-1) - 48*a(n-2) + a(n-3). - Kevin Ryde, Mar 20 2021
a(n) = 9*A161582(n) + 1. - Hugo Pfoertner, Mar 19 2021
a(n) = A033890(n-1)^2.
Comments