cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A375364 Expansion of 1/( (1 + x) * (1 - x^2*(1 + x)^3) ).

Original entry on oeis.org

1, -1, 2, 1, 3, 4, 12, 17, 35, 67, 127, 234, 451, 850, 1602, 3031, 5740, 10837, 20490, 38751, 73253, 138471, 261814, 494972, 935738, 1769079, 3344568, 6323022, 11953992, 22599700, 42725842, 80775309, 152709941, 288705926, 545813095, 1031887517, 1950836006
Offset: 0

Views

Author

Seiichi Manyama, Aug 13 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(1/((1+x)*(1-x^2*(1+x)^3)))
    
  • PARI
    a(n) = sum(k=0, n\2, binomial(3*k-1, n-2*k));

Formula

a(n) = -a(n-1) + a(n-2) + 4*a(n-3) + 6*a(n-4) + 4*a(n-5) + a(n-6).
a(n) = Sum_{k=0..floor(n/2)} binomial(3*k-1,n-2*k).
a(n) = A375365(n) + A375365(n-1).
Showing 1-1 of 1 results.