login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A014610
Tetranacci numbers arising in connection with current algebras sp(2)_n.
1
3, 5, 10, 19, 37, 71, 137, 264, 509, 981, 1891, 3645, 7026, 13543, 26105, 50319, 96993, 186960, 360377, 694649, 1338979, 2580965, 4974970, 9589563, 18484477, 35629975, 68678985, 132383000, 255176437, 491868397, 948106819, 1827534653, 3522686306, 6790196175
OFFSET
0,1
FORMULA
G.f.: (3+2x+2x^2+x^3)/(1-x-x^2-x^3-x^4).
MATHEMATICA
LinearRecurrence[{1, 1, 1, 1}, {3, 5, 10, 19}, 29] (* Jean-François Alcover, Feb 24 2019 *)
PROG
(PARI) my(p=Mod('x, 'x^4-'x^3-'x^2-'x-1)); a(n) = -subst(lift(p^(n+7)), 'x, -1); \\ Kevin Ryde, May 03 2021
CROSSREFS
Sequence in context: A158943 A133999 A238431 * A117591 A003055 A317766
KEYWORD
easy,nonn
STATUS
approved