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.

A352839 Expansion of g.f. 1/(1 - Sum_{k>=1} sigma_k(k) * x^k).

Original entry on oeis.org

1, 1, 6, 39, 370, 4132, 59288, 990705, 19577018, 439550259, 11142216938, 313147651821, 9680830606850, 325944181383936, 11875777329091878, 465292113335910106, 19507503314546762246, 871248546067010133794, 41295079536653463057146
Offset: 0

Views

Author

Seiichi Manyama, Apr 05 2022

Keywords

Crossrefs

Programs

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

Formula

a(0) = 1; a(n) = Sum_{k=1..n} sigma_k(k) * a(n-k).