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-10 of 11 results. Next

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

Original entry on oeis.org

1, 0, 1, 0, 1, 2, 1, 2, 4, 2, 7, 6, 7, 12, 12, 16, 26, 22, 35, 44, 47, 68, 84, 88, 133, 146, 176, 238, 267, 324, 431, 468, 604, 746, 842, 1068, 1296, 1470, 1884, 2202, 2579, 3220, 3753, 4418, 5483, 6294, 7541, 9144, 10554, 12644, 15191, 17480, 21057, 24896
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 04 2015

Keywords

Comments

a(n) is the number of partitions of n into parts 3*k-1 of k kinds (k>=1).
In general, if s>0, t>0, GCD(s,t)=1 and g.f. = Product_{k>=1} 1/(1 - x^(s*k-t))^k then a(n) ~ s^(t^2/(3*s^2) - 7/18) * n^(t^2/(6*s^2) - 25/36) * exp(d(s,t) - Pi^4 * t^2 / (432*s^2 * Zeta(3)) + Pi^2 * t * 2^(2/3) * s^(2/3) * n^(1/3) / (12 * s^2 * Zeta(3)^(1/3)) + 3*Zeta(3)^(1/3) * n^(2/3) / (2^(2/3)*s^(2/3))) / (2^(t^2/(6*s^2) + 11/36) * sqrt(3*Pi) * Zeta(3)^(t^2/(6*s^2) - 7/36)), where d(s,t) = Integral_{x=0..infinity} 1/x * (exp(-(s-t)*x)/(1 - exp(-s*x))^2 - 1/(s^2*x^2) - t/(s^2*x) + exp(-x)*(1/12 - t^2/(2*s^2))) dx. - Vaclav Kotesovec, Oct 12 2015

Crossrefs

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          `if`(irem(d+3, 3, 'r')=2, r, 0), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..60);  # Alois P. Heinz, Oct 05 2015
  • Mathematica
    nmax=100; CoefficientList[Series[Product[1/(1-x^(3k-1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax=100; CoefficientList[Series[E^Sum[1/j*x^(2*j)/(1-x^(3j))^2,{j,1,nmax}],{x,0,nmax}],x]

Formula

a(n) ~ Zeta(3)^(19/108) * exp(d1 - Pi^4 / (3888*Zeta(3)) + Pi^2 * n^(1/3) / (2^(4/3)*3^(7/3) * Zeta(3)^(1/3)) + 3^(1/3) * Zeta(3)^(1/3) * n^(2/3) / 2^(2/3)) / (2^(35/108) * 3^(23/27) * sqrt(Pi) * n^(73/108)), where d1 = A263030 = Integral_{x=0..infinity} 1/x*(exp(-2*x)/(1 - exp(-3*x))^2 - 1/(9*x^2) - 1/(9*x) + exp(-x)/36) = -0.188708191979528532376410098649207973592114467268429221509... . - Vaclav Kotesovec, Oct 08 2015

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

Original entry on oeis.org

1, 1, 1, 1, 3, 3, 3, 6, 9, 9, 13, 19, 23, 28, 42, 51, 62, 84, 108, 127, 170, 219, 261, 328, 427, 512, 632, 807, 987, 1190, 1504, 1838, 2214, 2744, 3374, 4036, 4950, 6060, 7260, 8793, 10748, 12853, 15459, 18766, 22473, 26834, 32425, 38768, 46136, 55376, 66168
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 04 2015

Keywords

Comments

a(n) is the number of partitions of n into parts 3*k-2 of k kinds (k>=1). - Joerg Arndt, Oct 06 2015

Crossrefs

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          `if`(irem(d+3, 3, 'r')=1, r, 0), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..60);  # Alois P. Heinz, Oct 05 2015
  • Mathematica
    nmax=100; CoefficientList[Series[Product[1/(1-x^(3k-2))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax=100; CoefficientList[Series[E^Sum[1/j*x^j/(1-x^(3j))^2,{j,1,nmax}],{x,0,nmax}],x]

Formula

a(n) ~ Zeta(3)^(13/108) * exp(d2 - Pi^4 / (972*Zeta(3)) + Pi^2 * n^(1/3) / (2^(1/3) * 3^(7/3) * Zeta(3)^(1/3)) + 3^(1/3) * Zeta(3)^(1/3) * n^(2/3) / 2^(2/3)) / (2^(41/108) * 3^(20/27) * sqrt(Pi) * n^(67/108)), where d2 = A263031 = Integral_{x=0..infinity} 1/x*(exp(-x)/(1 - exp(-3*x))^2 - 1/(9*x^2) - 2/(9*x) - 5*exp(-x)/36) = -0.0145374291832840336050202945022620903605414975934644413815... . - Vaclav Kotesovec, Oct 08 2015

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

Original entry on oeis.org

1, 1, 0, 2, 2, 3, 4, 5, 10, 11, 16, 20, 31, 39, 50, 71, 93, 124, 154, 211, 271, 357, 449, 587, 762, 968, 1233, 1571, 2021, 2535, 3220, 4049, 5145, 6431, 8070, 10105, 12670, 15784, 19619, 24447, 30348, 37635, 46464, 57532, 70945, 87477, 107456, 132192, 162220
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 10 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 100; CoefficientList[Series[Product[(1 + x^(2*k-1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 100; CoefficientList[Series[E^Sum[(-1)^(j+1)/j*x^j/(1 - x^(2*j))^2, {j, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: exp(Sum_{j>=1} (-1)^(j+1)/j*x^j/(1 - x^(2*j))^2).
a(n) ~ exp(-Pi^4 / (5184*Zeta(3)) + Pi^2 * n^(1/3) / (8 * 3^(4/3) * Zeta(3)^(1/3)) + 3^(4/3) * Zeta(3)^(1/3) * n^(2/3)/4) * Zeta(3)^(1/6) / (2^(23/24) * 3^(1/3)* sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 1, 0, 0, 2, 2, 0, 3, 4, 1, 4, 10, 6, 5, 16, 14, 9, 28, 32, 17, 40, 63, 41, 63, 112, 83, 94, 187, 171, 156, 301, 319, 260, 467, 580, 465, 713, 981, 818, 1095, 1627, 1452, 1682, 2584, 2510, 2632, 4047, 4266, 4162, 6181, 7054, 6685, 9396, 11423, 10753, 14132
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 04 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax=100; CoefficientList[Series[Product[(1+x^(3k-2))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax=100; CoefficientList[Series[E^Sum[(-1)^(j+1)/j*x^j/(1-x^(3j))^2,{j,1,nmax}],{x,0,nmax}],x]
    Clear[a]; a[n_]:=a[n] = If[n==0, 1, Sum[Sum[d*{0, 2*Floor[d/6] + 1, -Floor[d/6] - 1, 0, 2*Floor[d/6] + 2, 0}[[1 + Mod[d, 6]]], {d, Divisors[j]}] * a[n-j], {j, 1, n}]/n]; Table[a[n], {n, 0, 100}]

Formula

a(n) ~ exp(2^(-4/3) * 3^(2/3) * Zeta(3)^(1/3) * n^(2/3) + Pi^2 * n^(1/3) / (2^(2/3) * 3^(8/3) * Zeta(3)^(1/3)) - Pi^4/(2916*Zeta(3))) * Zeta(3)^(1/6) / (2^(19/36) * 3^(2/3) * sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 1, 2, 2, 5, 10, 13, 25, 35, 57, 87, 134, 211, 306, 458, 684, 996, 1465, 2129, 3073, 4411, 6288, 8977, 12707, 17913, 25185, 35231, 49078, 68228, 94490, 130408, 179425, 246121, 336681, 459239, 624842, 847986, 1147728, 1549773, 2087972, 2806455, 3764136
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 04 2015

Keywords

Comments

Convolution of A262948 and A262949.

Crossrefs

Programs

  • Mathematica
    nmax=60; CoefficientList[Series[Product[(1 + x^(3*k-1))^(3*k-1)*(1 + x^(3*k-2))^(3*k-2), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(3*Zeta(3)^(1/3)*n^(2/3)/2) * Zeta(3)^(1/6) / (2^(1/3) * sqrt(3*Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 3, 0, 0, 0, 4, 4, 0, 0, 1, 10, 5, 0, 0, 6, 16, 6, 0, 0, 14, 28, 7, 0, 3, 32, 40, 8, 0, 10, 63, 60, 9, 0, 33, 112, 80, 10, 3, 74, 187, 110, 11, 14, 161, 300, 140, 12, 46, 308, 455, 182, 14, 120, 568, 672, 224, 26, 283
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 10 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 100; CoefficientList[Series[Product[(1+x^(5k-1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 100; CoefficientList[Series[E^Sum[(-1)^(j+1)/j*x^(4*j)/(1 - x^(5*j))^2, {j, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: exp(Sum_{j>=1} (-1)^(j+1)/j*x^(4*j)/(1 - x^(5*j))^2).
a(n) ~ 2^(27/100) * 3^(2/3) * 5^(2/3) * Zeta(3)^(1/6) * exp(-Pi^4/(32400*Zeta(3)) + Pi^2 * 3^(2/3) * 2^(1/3) * 5^(2/3) * n^(1/3) / (900*Zeta(3)^(1/3)) + Zeta(3)^(1/3) * 3^(4/3) * 2^(2/3) * 5^(1/3) * n^(2/3) / 20) / (30 * sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 4, 7, 9, 11, 16, 23, 31, 40, 53, 71, 91, 121, 161, 206, 264, 343, 441, 563, 725, 922, 1166, 1476, 1869, 2357, 2967, 3725, 4659, 5816, 7263, 9050, 11241, 13947, 17269, 21333, 26342, 32479, 39957, 49094, 60231, 73775, 90273, 110333, 134643
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 04 2015

Keywords

Comments

Convolution of A262878 and A262879.

Crossrefs

Programs

  • Mathematica
    nmax = 50; CoefficientList[Series[Product[((1+x^(3*k-1))*(1+x^(3*k-2)))^k, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(-Pi^4/(2592*Zeta(3)) + Pi^2 * n^(1/3) / (12*3^(2/3)*Zeta(3)^(1/3)) + 3^(2/3) * Zeta(3)^(1/3) * n^(2/3)/2) * Zeta(3)^(1/6) / (2^(7/18) * 3^(2/3) * sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 0, 2, 0, 1, 5, 0, 10, 8, 5, 26, 11, 28, 62, 24, 101, 111, 77, 260, 202, 268, 583, 382, 761, 1165, 847, 1940, 2198, 2061, 4346, 4084, 5078, 9039, 7844, 11978, 17620, 15721, 26648, 33219, 32894, 56000, 61494, 69653, 111884, 114265, 146557, 214864, 214967
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 05 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax=60; CoefficientList[Series[Product[(1 + x^(3*k-1))^(3*k-1),{k,1,nmax}],{x,0,nmax}],x]

Formula

a(n) ~ exp(3 * 2^(-4/3) * Zeta(3)^(1/3) * n^(2/3)) * Zeta(3)^(1/6) / (2^(7/12) * sqrt(3*Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 2, 3, 0, 0, 4, 4, 0, 1, 10, 5, 0, 6, 16, 6, 0, 14, 28, 7, 3, 32, 40, 8, 10, 63, 60, 9, 33, 112, 80, 13, 74, 187, 110, 25, 161, 300, 140, 58, 308, 455, 183, 133, 568, 672, 236, 297, 968, 963, 321, 609, 1609, 1344, 468, 1188, 2546
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 10 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 100; CoefficientList[Series[Product[(1+x^(4k-1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 100; CoefficientList[Series[E^Sum[(-1)^(j+1)/j*x^(3*j)/(1 - x^(4*j))^2, {j, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: exp(Sum_{j>=1} (-1)^(j+1)/j*x^(3*j)/(1 - x^(4*j))^2).
a(n) ~ 2^(59/96) * 3^(2/3) * Zeta(3)^(1/6) * exp(-Pi^4/(20736*Zeta(3)) + Pi^2 * 3^(2/3) * 2^(2/3) * n^(1/3) / (288*Zeta(3)^(1/3)) + Zeta(3)^(1/3) * 2^(-8/3) * 3^(4/3) * n^(2/3)) / (12 * sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 1, 2, 4, 7, 14, 22, 40, 65, 107, 176, 282, 448, 705, 1101, 1701, 2611, 3977, 6021, 9048, 13527, 20102, 29720, 43712, 63997, 93259, 135317, 195539, 281440, 403559, 576568, 820888, 1164826, 1647583, 2323169, 3266041, 4578305, 6399990, 8922389, 12406535
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 15 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax=40; CoefficientList[Series[Product[((1 + x^k)/(1 + x^(3*k)))^k,{k,1,nmax}],{x,0,nmax}],x]

Formula

a(n) ~ Zeta(3)^(1/6) * exp(2^(-1/3) * 3^(2/3) * Zeta(3)^(1/3) * n^(2/3)) / (2^(1/6) * 3^(2/3) * sqrt(Pi) * n^(2/3)).
Showing 1-10 of 11 results. Next