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.

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

Original entry on oeis.org

1, 1, 4, 27, 257, 3189, 48843, 889079, 18730597, 447945714, 11983618199, 354519428597, 11490618543066, 404910044246256, 15412461332440829, 630199633730994675, 27548323149955792880, 1282044807268698303751, 63284535745130267484867
Offset: 0

Views

Author

Seiichi Manyama, Feb 19 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*binomial(n-3*k, k));

Formula

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