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.

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

Original entry on oeis.org

1, 1, 2, 9, 98, 3212, 428525, 165045051, 342128248388, 2522279110319003, 90930729844450829580, 17690430223837969605522024, 13516362920784209950583739768297, 79459280482613898608830749440741093093
Offset: 0

Views

Author

Seiichi Manyama, Feb 16 2023

Keywords

Crossrefs

Programs

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

Formula

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