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.

A248882 Expansion of Product_{k>=1} (1+x^k)^(k^3).

Original entry on oeis.org

1, 1, 8, 35, 119, 433, 1476, 4962, 16128, 51367, 160105, 490219, 1476420, 4378430, 12805008, 36962779, 105417214, 297265597, 829429279, 2291305897, 6270497702, 17008094490, 45744921052, 122052000601, 323166712109, 849453194355, 2217289285055, 5749149331789
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 05 2015

Keywords

Crossrefs

Programs

  • Magma
    m:=50; R:=PowerSeriesRing(Rationals(), m); Coefficients(R! ( (&*[(1+x^k)^k^3: k in [1..m]]) )); // G. C. Greubel, Oct 31 2018
  • Maple
    b:= proc(n) option remember; add(
          (-1)^(n/d+1)*d^4, d=numtheory[divisors](n))
        end:
    a:= proc(n) option remember; `if`(n=0, 1,
          add(b(k)*a(n-k), k=1..n)/n)
        end:
    seq(a(n), n=0..35);  # Alois P. Heinz, Oct 16 2017
  • Mathematica
    nmax=50; CoefficientList[Series[Product[(1+x^k)^(k^3),{k,1,nmax}],{x,0,nmax}],x]
  • PARI
    x = 'x + O('x^50); Vec(prod(k=1, 50, (1 + x^k)^(k^3))) \\ Indranil Ghosh, Apr 06 2017
    

Formula

a(n) ~ Zeta(5)^(1/10) * 3^(1/5) * exp(2^(-11/5) * 3^(2/5) * 5^(6/5) * Zeta(5)^(1/5) * n^(4/5)) / (2^(71/120) * 5^(2/5)* sqrt(Pi) * n^(3/5)), where Zeta(5) = A013663.
a(0) = 1, a(n) = (1/n)*Sum_{k=1..n} A284900(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 06 2017
G.f.: exp(Sum_{k>=1} (-1)^(k+1)*x^k*(1 + 4*x^k + x^(2*k))/(k*(1 - x^k)^4)). - Ilya Gutkovskiy, May 30 2018
Euler transform of A309335. - Georg Fischer, Nov 10 2020