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.

A348309 a(n) = Sum_{k=0..floor(n/8)} (-1)^k * binomial(n-4*k,4*k).

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 0, -4, -14, -34, -69, -125, -209, -329, -493, -705, -955, -1199, -1324, -1092, -56, 2560, 8025, 18313, 36353, 66273, 113525, 184653, 286257, 422377, 589028, 763912, 888378, 837502, 372835, -928725, -3776537, -9302337, -19226889, -36034869, -63099331, -104630831, -165212760
Offset: 0

Views

Author

Seiichi Manyama, Oct 11 2021

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{4, -6, 4, -1, 0, 0, 0, -1}, {1, 1, 1, 1, 1, 1, 1, 1}, 45] (* Amiram Eldar, Oct 11 2021 *)
  • PARI
    a(n) = sum(k=0, n\8, (-1)^k*binomial(n-4*k, 4*k));
    
  • PARI
    my(N=66, x='x+O('x^N)); Vec((1-x)^3/((1-x)^4+x^8))

Formula

G.f.: (1-x)^3/((1-x)^4 + x^8).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) - a(n-8).