OFFSET
0,2
COMMENTS
LINKS
Indranil Ghosh, Table of n, a(n) for n = 0..501
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (98,-1).
FORMULA
a(n) = 98*a(n-1)-a(n-2) for n > 1.
G.f.: 20*x/(1-98*x+x^2). - Philippe Deléham, Nov 18 2008
E.g.f.: exp(49*x)*sinh(20*sqrt(6)*x)/sqrt(6). - Stefano Spezia, May 31 2026
a(n) = 20 * A173205(n). - Alois P. Heinz, May 31 2026
EXAMPLE
0 and 20 are at the start of the sequence since m^2*(m^2-1)*2/3 (A072819) starts 0, 0, 8, 48, 160, 400, 840, 1568, ... and the only squares among these are 0 and 400 with square roots of 0 and 20.
PROG
(PARI) a(n)=([0, 1; -1, 98]^n*[0; 20])[1, 1] \\ Charles R Greathouse IV, May 29 2026
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Henry Bottomley, Jul 14 2002
EXTENSIONS
New name using g.f. by Philippe Deléham from Joerg Arndt, May 31 2026
STATUS
approved
