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.

Showing 1-1 of 1 results.

A055890 CIK transform of partition numbers A000041.

Original entry on oeis.org

1, 1, 3, 6, 14, 28, 68, 148, 358, 845, 2061, 5018, 12458, 30922, 77557, 195154, 493809, 1253614, 3195210, 8166758, 20935826, 53799072, 138571332, 357647566, 924846881, 2395702829, 6215779536, 16150985916, 42024260088, 109485000778
Offset: 0

Views

Author

Christian G. Bower, Jun 09 2000

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 30;
    f[x_] = 1/Product[1 - x^n, {n, 1, nmax}] - 1;
    gf = 1+Sum[(EulerPhi[n]/n)*Log[1/(1 - f[x^n])] + O[x]^nmax, {n, 1, nmax}];
    CoefficientList[gf, x] (* Jean-François Alcover, Jul 29 2018, from PARI *)
  • PARI
    N = 66;  x = 'x + O('x^N);
    f(x) = 1 / prod(n=1,N, 1-x^n ) - 1;  \\ A055890
    gf = 1 + sum(n=1,N, eulerphi(n)/n*log(1/(1-f(x^n)))  );
    v = Vec(gf)
    /* Joerg Arndt, Jan 21 2013 */
Showing 1-1 of 1 results.