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.

A305745 Expansion of Product_{k>=1} ((1 - k*x^k) / (1 + k*x^k))^k.

Original entry on oeis.org

1, -2, -6, -4, 22, 72, 84, -32, -474, -1310, -1728, 60, 6420, 18712, 31080, 24992, -34074, -186468, -430138, -650612, -496296, 687120, 3599652, 8413968, 13374148, 12772246, -3910080, -50592280, -136089520, -244815336, -309079848, -176916784, 391358838
Offset: 0

Views

Author

Seiichi Manyama, Jun 09 2018

Keywords

Crossrefs

Programs

  • Maple
    N:= 50: # for a(0) .. a(N)
    f:= mul(((1-k*x^k)/(1+k*x^k))^k,k=1..N):
    S:= series(f,x,N+1):
    seq(coeff(S,x,i),i=0..N); # Robert Israel, Mar 01 2024
  • PARI
    N=99; x='x+O('x^N); Vec(prod(k=1, N, ((1-k*x^k)/(1+k*x^k))^k))

Formula

Convolution of A266964 and A266971.
Convolution inverse of A266942.
Showing 1-1 of 1 results.