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.

A349894 a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(k*(n-k)).

Original entry on oeis.org

1, 0, 1, -3, -10, 410, 42985, -6527829, -24060996846, -6613442955828, 3882375189467092921, 235121650953066124724477, -289337164954511885810252000250, -995208334663809003504695464745010282, 13325880481925983143500510271865447222057073
Offset: 0

Views

Author

Seiichi Manyama, Dec 04 2021

Keywords

Crossrefs

Programs

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

Formula

G.f.: Sum_{k>=0} x^k/(1 + k^k * x).