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.

Previous Showing 21-22 of 22 results.

A296048 Expansion of e.g.f. Product_{k>=1} ((1 - x^k)/(1 + x^k))^(1/k).

Original entry on oeis.org

1, -2, 2, -4, 32, -128, 496, -2336, 29312, -395776, 3194624, -21951488, 277270528, -4027191296, 38850203648, -739834458112, 19460560584704, -299971773661184, 3169121209090048, -51853341314514944, 1234704403684130816, -30653318499154788352, 658369600764729884672, -10809496145754051313664
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 03 2017

Keywords

Crossrefs

Programs

  • Maple
    a:=series(mul(((1-x^k)/(1+x^k))^(1/k),k=1..100),x=0,24): seq(n!*coeff(a,x,n),n=0..23); # Paolo P. Lava, Mar 27 2019
  • Mathematica
    nmax = 23; CoefficientList[Series[Product[((1 - x^k)/(1 + x^k))^(1/k), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
    nmax = 23; CoefficientList[Series[Exp[-2 Sum[Total[Mod[Divisors[k], 2] x^k]/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!

Formula

E.g.f.: exp(-2*Sum_{k>=1} A001227(k)*x^k/k).
E.g.f.: exp(-Sum_{k>=1} A054844(k)*x^k/k).

A305128 Expansion of e.g.f. Product_{k>=1} 1/(1 - x^k)^AH(k), where AH(k) is the k-th alternating harmonic number.

Original entry on oeis.org

1, 1, 3, 14, 79, 539, 4663, 42468, 457945, 5433281, 71036231, 994289658, 15544425103, 253283689619, 4489180389835, 84521336758904, 1687130833152561, 35365641206048129, 790065486354237643, 18340253632236738022, 449655289227002010351, 11492300073384698090795, 306803167368168113022271
Offset: 0

Views

Author

Ilya Gutkovskiy, May 26 2018

Keywords

Comments

a(n)/n! is the Euler transform of [1, 1 - 1/2, 1 - 1/2 + 1/3, 1 - 1/2 + 1/3 - 1/4, 1 - 1/2 + 1/3 - 1/4 + 1/5, ...].

Crossrefs

Programs

  • Mathematica
    nmax = 22; CoefficientList[Series[Product[1/(1 - x^k)^Sum[(-1)^(j + 1)/j, {j, 1, k}], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
    a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d ((-1)^(d + 1) LerchPhi[-1, 1, d + 1] + Log[2]), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[n! a[n], {n, 0, 22}]

Formula

E.g.f.: Product_{k>=1} 1/(1 - x^k)^(A058313(k)/A058312(k)).
Previous Showing 21-22 of 22 results.