OFFSET
0,2
COMMENTS
Conjecture: a(m, 2*n+1) is a perfect square for all m,n (see A113249).
This was proved by an autonomous AI agent, see the Lean file. The proof uses an auxiliary sequence Y (a second-order recurrence) and shows the odd-indexed terms satisfy a(2n+1) = Y(n)^2 by induction over a three-term window. - Ralf Stephan, May 25 2026
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Google Deepmind, AlphaProof Nexus: A113254 Lean file
Index entries for linear recurrences with constant coefficients, signature (-4,0,256,4096).
FORMULA
G.f.: (-1+192*x^2+4096*x^3) / ((8*x+1)*(1-8*x)*(64*x^2+4*x+1)).
a(n) = -4*a(n-1) + 256*a(n-3) + 4096*a(n-4) for n > 3. - Colin Barker, May 20 2019
MATHEMATICA
LinearRecurrence[{-4, 0, 256, 4096}, {-1, 4, 176, 3136}, 25] (* Paolo Xausa, Jun 10 2024 *)
PROG
(PARI) Vec(-(1 - 192*x^2 - 4096*x^3) / ((1 - 8*x)*(1 + 8*x)*(1 + 4*x + 64*x^2)) + O(x^25)) \\ Colin Barker, May 20 2019
CROSSREFS
KEYWORD
easy,sign,changed
AUTHOR
Creighton Dement, Nov 18 2005
STATUS
approved
