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-4 of 4 results.

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

Original entry on oeis.org

1, -2, 0, -2, 6, -6, 12, -22, 48, -94, 160, -318, 622, -1210, 2268, -4482, 8678, -16998, 32632, -64366, 124674, -245866, 476108, -940866, 1829148, -3617066, 7040112, -13937530, 27186810, -53857062, 105196572, -208546726, 407944704, -809175966, 1584713040
Offset: 0

Views

Author

Seiichi Manyama, Apr 22 2018

Keywords

Crossrefs

Expansion of Product_{k>=1} ((1 - 2^b*x^k)/(1 + 2^b*x^k))^(1/(2^b)): A002448 (b=0), this sequence (b=1), A303387 (b=2), A303396 (b=3).

Programs

  • Maple
    seq(coeff(series(mul(((1-2*x^k)/(1+2*x^k))^(1/2), k = 1..n), x, n+1), x, n), n=0..40); # Muniru A Asiru, Apr 22 2018
  • PARI
    N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1-2*x^k)/(1+2*x^k))^(1/2)))

Formula

a(n) ~ c * (-2)^n / sqrt(Pi*n), where c = (QPochhammer[-1, -1/2] / QPochhammer[-1/2])^(1/2) = 0.96924509195711964009315.... - Vaclav Kotesovec, Apr 25 2018

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

Original entry on oeis.org

1, 2, 4, 10, 18, 38, 80, 158, 292, 630, 1260, 2470, 4922, 9706, 19392, 41010, 78466, 155494, 318764, 625670, 1238854, 2567666, 5106208, 10122522, 20022960, 40082154, 80027140, 163330106, 324201942, 643489014, 1306843568, 2592220110, 5081546084
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2018

Keywords

Comments

a(n) / 2^n tends to 1.2036... - Vaclav Kotesovec, Apr 25 2018

Crossrefs

Programs

  • Mathematica
    nmax = 30; CoefficientList[Series[Product[((1 + 2^k*x^k)/(1 - 2^k*x^k))^(1/2^k), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 24 2018 *)
    nmax = 30; CoefficientList[Series[Exp[Sum[((-1)^j - 1) / (j*(1 - 1/(2^(j - 1)*x^j))), {j, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 25 2018 *)
  • PARI
    my(N=66, x='x+O('x^N)); Vec(prod(k=1, N, ((1+2^k*x^k)/(1-2^k*x^k))^(1/2^k)))

Formula

G.f.: exp( Sum_{j>=1} ((-1)^j - 1) / (j*(1 - 1/(2^(j-1)*x^j))) ). - Vaclav Kotesovec, Apr 25 2018

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

Original entry on oeis.org

1, -2, 0, -10, 22, -102, 84, -950, 3360, -18006, 21968, -162126, 613830, -2772010, 3847740, -38669210, 145735622, -567469350, 901506480, -6688787966, 27166965906, -137118406226, 234942672620, -1425038557410, 6527750118052, -27227710098826
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2018

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 30; CoefficientList[Series[Exp[Sum[(1 - (-1)^j) / (j*(1 - 1/(4^(j-1)*x^j))), {j, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 25 2018 *)
  • PARI
    N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1-4^k*x^k)/(1+4^k*x^k))^(1/4^k)))

Formula

G.f.: exp(Sum_{j>=1} ((1 - (-1)^j) / (j*(1 - 1/(4^(j-1)*x^j))) )). - Vaclav Kotesovec, Apr 25 2018

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

Original entry on oeis.org

1, -2, 0, -42, 86, -1638, 1428, -71286, 218592, -3941590, 5374096, -187901262, 661408902, -10769651242, 18007942140, -597519823962, 2262843922694, -34034727280806, 65527429637360, -1858398841872062, 7543997928104274, -118580678725935186
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2018

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 30; CoefficientList[Series[Exp[Sum[(1 - (-1)^j) / (j*(1 - 1/(8^(j-1)*x^j))), {j, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 25 2018 *)
  • PARI
    N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1-8^k*x^k)/(1+8^k*x^k))^(1/8^k)))

Formula

G.f.: exp(Sum_{j>=1} ((1 - (-1)^j) / (j*(1 - 1/(8^(j-1)*x^j))) )). - Vaclav Kotesovec, Apr 25 2018
Showing 1-4 of 4 results.