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.

A355495 Expansion of Sum_{k>=0} (k^2 * x/(1 - x))^k.

Original entry on oeis.org

1, 1, 17, 762, 67772, 10032208, 2226273192, 691431572992, 286268594755712, 152365547943819264, 101361042063083269520, 82409537565402784477984, 80397802305461995791664944, 92692687015689239272783171264
Offset: 0

Views

Author

Seiichi Manyama, Jul 04 2022

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=1..n} k^(2*k) * binomial(n-1,k-1) for n > 0.