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.

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

Original entry on oeis.org

1, 4, 12, 36, 92, 228, 540, 1236, 2748, 6004, 12876, 27252, 57036, 118308, 243564, 498564, 1015484, 2060484, 4167804, 8409588, 16934748, 34049940, 68378220, 137185428, 275026476, 551052676, 1103618508, 2209525092, 4422484764, 8850120420, 17707920924
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 25 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 40; CoefficientList[Series[Product[(1 + 2*x^k)/(1 - 2*x^k), {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 40; CoefficientList[Series[Exp[Sum[2^(2*k)/(2*k-1)*x^(2*k-1)/(1 - x^(2*k-1)), {k, 1, nmax}]], {x, 0, nmax}], x]
    (O[x]^30 - QPochhammer[-2, x]/(3 QPochhammer[2, x]))[[3]] (* Vladimir Reshetnikov, Nov 20 2015 *)

Formula

a(n) = c * 2^n, where c = 1/(A048651 * A083864) = 2*Product_{j>=1} (2^j+1)/(2^j-1) = 16.5119758715565001310882816988645462530540032335764606912075051272567456...

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

Original entry on oeis.org

1, 2, 4, 14, 24, 58, 124, 238, 480, 922, 1764, 3238, 6008, 10794, 19292, 34166, 59504, 103042, 176452, 299958, 505240, 845570, 1403324, 2315118, 3794640, 6180370, 10009540, 16121374, 25829512, 41171690, 65320956, 103140062, 162149488, 253823178, 395698276
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 24 2015

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember;  `if`(n=0, 1, `if`(i<1, 0,
          add(2^j*binomial(i, j)*b(n-i*j, i-1), j=0..n/i)))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..40);  # Alois P. Heinz, Sep 21 2018
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 + 2*x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 50; CoefficientList[Series[Exp[Sum[(-1)^(k+1)*2^k/k*x^k/(1 - x^k)^2, {k, 1, nmax}]], {x, 0, nmax}], x]
    nmax = 50; s = 1+2*x; Do[s*=Sum[Binomial[k, j]*2^j*x^(j*k), {j, 0, nmax/k}]; s = Take[Expand[s], Min[nmax + 1, Exponent[s, x] + 1]];, {k, 2, nmax}]; CoefficientList[s, x] (* Vaclav Kotesovec, Jan 08 2016 *)
  • PARI
    {a(n) = polcoeff( exp( sum(m=1, n, x^m/m * sumdiv(m, d, -(-2)^d * m^2/d^2) ) +x*O(x^n)), n)}
    for(n=0, 40, print1(a(n), ", ")) \\ Paul D. Hanna, Sep 30 2015

Formula

G.f.: exp( Sum_{n>=1} x^n/n * Sum_{d|n} -(-2)^d * n^2/d^2 ). - Paul D. Hanna, Sep 30 2015
a(n) ~ c^(1/6) * exp(3^(2/3)*c^(1/3)*n^(2/3)/2) / (3^(3/4)*sqrt(2*Pi)*n^(2/3)), where c = Pi^2*log(2) + log(2)^3 - 6*polylog(3, -1/2) = 10.00970018379942727227807189532511265744588249928680712064... . - Vaclav Kotesovec, Jan 04 2016

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

Original entry on oeis.org

1, 2, 8, 22, 64, 162, 424, 1022, 2480, 5770, 13336, 30046, 67184, 147554, 321592, 692278, 1479568, 3133474, 6596008, 13788606, 28679264, 59335530, 122256456, 250875550, 513116864, 1046190786, 2127557592, 4316282006, 8739096992, 17661731138, 35639764536
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 24 2015

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember;  `if`(n=0, 1, `if`(i<1, 0,
          add(2^j*binomial(i+j-1, j)*b(n-i*j, i-1), j=0..n/i)))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..40);  # Alois P. Heinz, Sep 21 2018
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1/(1 - 2*x^k))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 50; CoefficientList[Series[Exp[Sum[2^k/k*x^k/(1 - x^k)^2, {k, 1, nmax}]], {x, 0, nmax}], x]
  • PARI
    {a(n) = polcoeff( exp( sum(m=1,n,x^m/m * sumdiv(m,d,2^d*m^2/d^2) ) +x*O(x^n)),n)}
    for(n=0,40,print1(a(n),", ")) \\ Paul D. Hanna, Sep 30 2015

Formula

a(n) ~ c * 2^n, where c = Product_{j>=1} 1/(1 - 1/2^j)^(j+1) = 34.7387234654851595844514193757064296508992247003230539635669599773458896...
G.f.: exp( Sum_{n>=1} x^n/n * Sum_{d|n} 2^d * n^2/d^2 ). - Paul D. Hanna, Sep 30 2015

A300412 a(n) = [x^n] Product_{k>=1} ((1 + n*x^k)/(1 - n*x^k))^k.

Original entry on oeis.org

1, 2, 16, 144, 1376, 15800, 210816, 3333372, 61688448, 1318588146, 32004369200, 869282342632, 26099925704928, 857736429098848, 30605729417479104, 1177841009504482200, 48614265201514729984, 2141639401723095243324, 100282931820560447963568, 4973060138191518242569120
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 05 2018

Keywords

Examples

			The table of coefficients of x^k in expansion of Product_{k>=1} ((1 + n*x^k)/(1 - n*x^k))^k begins:
n = 0: (1),  0,   0,    0,     0,       0,  ...
n = 1:  1,  (2),  6,   16,    38,      88,  ...
n = 2:  1,   4, (16),  60,   192,     596,  ...
n = 3:  1,   6,  30, (144),  582,    2280,  ...
n = 4:  1,   8,  48,  280, (1376),   6568,  ...
n = 5:  1,  10,  70,  480,  2790,  (15800), ...
		

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[Product[((1 + n x^k)/(1 - n x^k))^k, {k, 1, n}], {x, 0, n}], {n, 0, 19}]

Formula

a(n) ~ 2 * n^n * (1 + 4/n + 14/n^2 + 44/n^3 + 124/n^4 + 328/n^5 + 824/n^6 + 1980/n^7 + 4590/n^8 + 10320/n^9 + 22584/n^10 + ...), for coefficients see A261451. - Vaclav Kotesovec, Mar 05 2018
Showing 1-4 of 4 results.