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”).

A109784
Expansion of (x^2-x-1)*(x^3-x^2+x-2) / ((x-1)*(2*x-1)*(x^2+x+1)*(x^2+1)).
1
2, 5, 6, 14, 31, 59, 118, 238, 475, 951, 1902, 3802, 7607, 15215, 30426, 60854, 121711, 243419, 486838, 973678, 1947355, 3894711, 7789422, 15578842, 31157687, 62315375, 124630746, 249261494, 498522991, 997045979, 1994091958, 3988183918
OFFSET
0,1
COMMENTS
Floretion Algebra Multiplication Program, 2ibasesumseq[5'i + .5i' + .5'ii' + .5'jj' + .5'kk' + .5e], sumtype: default (ver. f). Note: Due to FAMP's limited ability to handle large numbers, it is unclear if 2ibasesumseq and (a(n)) continue to coincide for large n.
FORMULA
a(n) = 2*a(n-1) - a(n-2) + 3*a(n-3) - 2*a(n-4) + a(n-5) - 2*a(n-6) for n>5. - Colin Barker, May 15 2019
MATHEMATICA
LinearRecurrence[{2, -1, 3, -2, 1, -2}, {2, 5, 6, 14, 31, 59}, 40] (* Harvey P. Dale, Nov 28 2019 *)
PROG
(PARI) Vec((1 + x - x^2)*(2 - x + x^2 - x^3) / ((1 - x)*(1 - 2*x)*(1 + x^2)*(1 + x + x^2)) + O(x^40)) \\ Colin Barker, May 15 2019
CROSSREFS
Sequence in context: A275839 A057302 A237352 * A221472 A076624 A205385
KEYWORD
nonn,easy
AUTHOR
Creighton Dement, Aug 14 2005
STATUS
approved