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.

A360731 Expansion of Sum_{k>=0} (k * x * (1 + k*x^3))^k.

Original entry on oeis.org

1, 1, 4, 27, 257, 3141, 46899, 827639, 16855357, 389100834, 10040378183, 286386193685, 8947506702834, 303875954083536, 11146559606379269, 439178938765108083, 18497974976610341624, 829420114454360154295, 39445018962975879216867
Offset: 0

Views

Author

Seiichi Manyama, Feb 18 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..floor(n/4)} (n-3*k)^(n-2*k) * binomial(n-3*k,k).