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

A169975 Expansion of Product_{i>=0} (1 + x^(4*i+1)).

Original entry on oeis.org

1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 2, 1, 0, 1, 2, 1, 0, 1, 3, 2, 0, 1, 3, 3, 1, 1, 4, 4, 1, 1, 4, 5, 2, 1, 5, 7, 3, 1, 5, 8, 5, 2, 6, 10, 6, 2, 6, 12, 9, 3, 7, 14, 11, 4, 7, 16, 15, 6, 8, 19, 18, 8, 9, 21, 23, 11, 10, 24, 27, 14, 11, 27, 34, 19, 13, 30, 39, 24, 15, 33, 47, 31, 18, 37, 54, 38
Offset: 0

Views

Author

N. J. A. Sloane, Aug 29 2010

Keywords

Comments

Number of partitions into distinct parts of the form 4*k+1.
In general, if a > 0, b > 0, GCD(a,b) = 1 and g.f. = Product_{k>=0} (1 + x^(a*k + b)), then a(n) ~ exp(Pi*sqrt(n/(3*a))) / (2^(1 + b/a) * (3*a)^(1/4) * n^(3/4)) [Meinardus, 1954]. - Vaclav Kotesovec, Aug 26 2015
Convolution of A147599 and A169975 is A000700. - Vaclav Kotesovec, Jan 18 2017

Crossrefs

Programs

  • Mathematica
    nmax = 200; CoefficientList[Series[Product[(1 + x^(4*k+1)), {k, 0, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 26 2015 *)
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 4] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Sum_{n>=0} (x^(2*n^2 - n) / Product_{k=1..n} (1 - x^(4*k))). - Joerg Arndt, Mar 10 2011
G.f.: G(0)/x where G(k) = 1 - 1/(1 - 1/(1 - 1/(1+(x)^(4*k+1))/G(k+1) )); (recursively defined continued fraction, see A006950). - Sergei N. Gladkovskii, Jan 28 2013
a(n) ~ exp(Pi*sqrt(n)/(2*sqrt(3))) / (2^(7/4) * 3^(1/4) * n^(3/4)) * (1 - (3*sqrt(3)/(4*Pi) + Pi/(192*sqrt(3))) / sqrt(n)). - Vaclav Kotesovec, Aug 26 2015, extended Jan 18 2017

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

Original entry on oeis.org

1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, 1, 2, 1, 0, 1, 3, 1, 0, 2, 3, 1, 0, 3, 4, 1, 1, 4, 4, 1, 1, 5, 5, 1, 2, 7, 5, 1, 3, 8, 6, 1, 5, 10, 6, 2, 6, 12, 7, 2, 9, 14, 7, 3, 11, 16, 8, 4, 15, 19, 8, 6, 18, 21, 9, 8, 23, 24, 10, 11, 27, 27, 11, 14, 34, 30, 12, 19, 39, 33, 14, 24, 47
Offset: 0

Views

Author

N. J. A. Sloane, Aug 29 2010

Keywords

Comments

Number of partitions into distinct parts 4*k+3.
Convolution of A147599 and A169975 is A000700. - Vaclav Kotesovec, Jan 18 2017

Crossrefs

Programs

  • Mathematica
    nmax = 200; CoefficientList[Series[Product[(1 + x^(4*k - 1)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Jan 18 2017 *)
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 0; Do[If[Mod[k, 4] == 3, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f. sum(n>=0, x^(2*n^2+n) / prod(k=1,n, 1-x^(4*k))) - Joerg Arndt, Mar 10 2011.
a(n) ~ exp(sqrt(n/3)*Pi/2) / (4*6^(1/4)*n^(3/4)) * (1 - (3*sqrt(3)/(4*Pi) + Pi/(192*sqrt(3))) / sqrt(n)). - Vaclav Kotesovec, Jan 18 2017

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

Original entry on oeis.org

1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 2, 1, 0, 0, 1, 2, 1, 0, 0, 1, 3, 1, 0, 0, 2, 3, 1, 0, 0, 3, 4, 1, 0, 1, 4, 4, 1, 0, 1, 5, 5, 1, 0, 2, 7, 5, 1, 0, 3, 8, 6, 1, 0, 5, 10, 6, 1, 1, 6, 12, 7, 1, 1, 9, 14, 7, 1, 2, 11, 16, 8, 1
Offset: 0

Views

Author

Vaclav Kotesovec, Jan 18 2017

Keywords

Comments

Convolution of this sequence and A280454 is A203776.

Crossrefs

Programs

  • Mathematica
    nmax = 200; CoefficientList[Series[Product[(1 + x^(5*k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 0; Do[If[Mod[k, 5] == 4, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly

Formula

a(n) ~ exp(sqrt(n/15)*Pi) / (2^(9/5)*15^(1/4)*n^(3/4)) * (1 + (Pi/(240*sqrt(15)) - 3*sqrt(15)/(8*Pi)) / sqrt(n)). - Vaclav Kotesovec, Jan 18 2017, extended Jan 24 2017
G.f.: Sum_{k>=0} x^(k*(5*k + 3)/2) / Product_{j=1..k} (1 - x^(5*j)). - Ilya Gutkovskiy, Nov 24 2020

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

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 2, 1, 0, 0, 1, 3, 2, 0, 0, 1, 3, 3, 1, 0, 1, 4, 4, 1, 0, 1, 4, 5, 2, 0, 1, 5, 7, 3, 0, 1, 5, 8, 5, 1, 1, 6, 10, 6, 1, 1, 6, 12, 9, 2, 1, 7, 14, 11, 3, 1, 7, 16, 15, 5, 1, 8, 19, 18, 7, 2, 8, 21, 23, 10, 2, 9, 24, 27, 13, 3, 9, 27, 34, 18, 4, 10, 30, 39, 23, 6, 10
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 03 2017

Keywords

Comments

Number of partitions of n into distinct parts congruent to 1 mod 5.
Convolution of A281243 and A280454 is A203776. - Vaclav Kotesovec, Jan 18 2017

Examples

			a(27) = 3 because we have [26, 1], [21, 6] and [11, 16].
		

Crossrefs

Programs

  • Mathematica
    nmax = 102; CoefficientList[Series[Product[(1 + x^(5 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 5] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Product_{k>=0} (1 + x^(5*k+1)).
a(n) ~ exp(Pi*sqrt(n)/sqrt(15))/(2*2^(1/5)*15^(1/4)*n^(3/4)) * (1 + (Pi/(240*sqrt(15)) - 3*sqrt(15)/(8*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 24 2017

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

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 3, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 5, 5, 1, 0, 0, 0, 2, 7, 5, 1, 0, 0, 0
Offset: 0

Views

Author

Vaclav Kotesovec, Jan 18 2017

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 200; CoefficientList[Series[Product[(1 + x^(7*k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 0; Do[If[Mod[k, 7] == 6, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly

Formula

a(n) ~ exp(sqrt(n/21)*Pi) / (2^(13/7)*21^(1/4)*n^(3/4)) * (1 + (13*Pi/(336*sqrt(21)) - 3*sqrt(21)/(8*Pi)) / sqrt(n)). - Vaclav Kotesovec, Jan 18 2017, extended Jan 24 2017
G.f.: Sum_{k>=0} x^(k*(7*k + 5)/2) / Product_{j=1..k} (1 - x^(7*j)). - Ilya Gutkovskiy, Nov 24 2020

A280457 Expansion of Product_{k>=0} (1 + x^(7*k+1)).

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 5, 2, 0, 0, 0, 1, 5, 7, 3, 0, 0, 0, 1, 5, 8, 5, 1, 0, 0, 1, 6, 10, 6, 1, 0, 0, 1, 6, 12, 9, 2, 0, 0, 1, 7, 14, 11, 3, 0, 0, 1, 7, 16, 15, 5
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 03 2017

Keywords

Comments

Number of partitions of n into distinct parts congruent to 1 mod 7.

Examples

			a(37) = 3 because we have [36, 1], [29, 8] and [22, 15].
		

Crossrefs

Programs

  • Mathematica
    nmax = 105; CoefficientList[Series[Product[(1 + x^(7 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 7] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Product_{k>=0} (1 + x^(7*k+1)).
a(n) ~ exp(Pi*sqrt(n)/sqrt(21))/(2*2^(1/7)*21^(1/4)*n^(3/4)) * (1 + (13*Pi/(336*sqrt(21)) - 3*sqrt(21)/(8*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 24 2017

A098884 Number of partitions of n into distinct parts in which each part is congruent to 1 or 5 mod 6.

Original entry on oeis.org

1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 2, 1, 1, 3, 5, 5, 3, 1, 2, 5, 7, 7, 5, 3, 3, 7, 11, 11, 7, 4, 6, 11, 15, 15, 11, 7, 8, 15, 22, 22, 15, 10, 13, 22, 30, 30, 23, 16, 18, 30, 42, 42, 31, 22, 27, 43, 56, 56, 44, 33, 37, 57, 77, 77, 59, 45, 53, 79, 101, 101, 82, 64, 71
Offset: 0

Views

Author

Noureddine Chair, Oct 14 2004

Keywords

Comments

Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
Convolution of A281244 and A280456. - Vaclav Kotesovec, Jan 18 2017

Examples

			E.g. a(25)=5 because 25=19+5+1=17+7+1=13+7+5=13+11+1.
G.f. = 1 + x + x^5 + x^6 + x^7 + x^8 + x^11 + 2*x^12 + 2*x^13 + x^14 + x^16 + ...
G.f. = q + q^13 + q^61 + q^73 + q^85 + q^97 + q^133 + 2*q^145 + 2*q^157 + q^169 + ...
		

Crossrefs

Programs

  • Haskell
    a098884 = p a007310_list where
       p _  0     = 1
       p (k:ks) m = if k > m then 0 else p ks (m - k) + p ks m
    -- Reinhard Zumkeller, Feb 19 2013
  • Maple
    series(product((1+x^(6*k-1))*(1+x^(6*k-5)),k=1..100),x=0,100);
  • Mathematica
    a[ n_] := SeriesCoefficient[ Product[ 1 - (-x)^k + x^(2 k), {k, n}], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
    a[ n_] := SeriesCoefficient[ 1 / Product[ 1 - x^k + x^(2 k), {k, 1, n, 2}], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
    a[ n_] := SeriesCoefficient[ Product[ 1 + x^k, {k, 1, n, 2}] / Product[ 1 + x^k, {k, 3, n, 6}], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
    a[ n_] := SeriesCoefficient[ Product[ 1 + x^k, {k, 1, n, 6}] Product[ 1 + x^k, {k, 5, n, 6}], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
    a[ n_] := SeriesCoefficient[ QPochhammer[ -x, x^6] QPochhammer[ -x^5, x^6], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
    a[ n_] := SeriesCoefficient[ QPochhammer[ -x, x^2] / QPochhammer[ -x^3, x^6], {x, 0, n}]; (* Michael Somos, Sep 20 2013 *)
  • PARI
    {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^2 * eta(x^3 + A) * eta(x^12 + A) / (eta(x + A) * eta(x^4 + A) * eta(x^6 + A)^2), n))}; /* Michael Somos, Jun 26 2005 */
    
  • PARI
    {a(n) = my(A, m); if( n<0, 0, A = x * O(x^n); m = sqrtint(3*n + 1); polcoeff( sum(k= -((m-1)\3), (m+1)\3, x^(k * (3*k - 2)), A) / eta(x^6 + A), n))}; /* Michael Somos, Sep 20 2013 */
    

Formula

Expansion of chi(x) / chi(x^3) in powers of x where chi() is a Ramanujan theta function. - Michael Somos, Sep 20 2013
Expansion of f(x^1, x^5) / f(-x^6) in powers of x where f(,) is a Ramanujan theta function. - Michael Somos, Sep 20 2013
Expansion of G(x^6) * H(-x) + x * G(-x) * H(x^6) where G() (A003114), H() (A003106) are Rogers-Ramanujan functions.
Expansion of q^(-1/12) * eta(q^2)^2 * eta(q^3) * eta(q^12) / (eta(q) * eta(q^4) * eta(q^6)^2) in powers of q.
Euler transform of period 12 sequence [ 1, -1, 0, 0, 1, 0, 1, 0, 0, -1, 1, 0, ...]. - Michael Somos, Jun 26 2005
G.f. is a period 1 Fourier series which satisfies f(-1 / (12 t)) = g(t) where q = exp(2 Pi i t) and g() is the g.f. for A227398. - Michael Somos, Sep 20 2013
G.f.: Product_{k>0} (1 - (-x)^k + x^(2*k)).
G.f.: 1 / Product_{k>0} (1 - x^(2*k - 1) + x^(4*k - 2)).
G.f.: 1 / Product_{k>0} ((1 + x^(6*k - 3)) / (1 + x^(2*k - 1))).
G.f.: Product_{k>0} ((1 + x^(6*k - 1)) * (1 + x^(6*k - 5))).
G.f.: 1 / Product_{k>0} (1 + (-x)^(3*k - 1)) * (1 + (-x)^(3*k - 2)).
G.f.: (Sum_{k in Z} x^(k * (3*k - 2))) / (Sum_{k in Z} (-1)^k * x^(3*k * (3*k-1))).
A109389(n) = (-1)^n * a(n). Convolution inverse of A227398.
a(n) ~ exp(sqrt(n)*Pi/3)/ (2*sqrt(6)*n^(3/4)) * (1 + (Pi/72 - 9/(8*Pi)) / sqrt(n)). - Vaclav Kotesovec, Aug 30 2015, extended Jan 18 2017

Extensions

Typo in Maple program fixed by Vaclav Kotesovec, Nov 15 2016

A280456 Expansion of Product_{k>=0} (1 + x^(6*k+1)).

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 3, 2, 0, 0, 0, 1, 3, 3, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 4, 5, 2, 0, 0, 1, 5, 7, 3, 0, 0, 1, 5, 8, 5, 1, 0, 1, 6, 10, 6, 1, 0, 1, 6, 12, 9, 2, 0, 1, 7, 14, 11, 3, 0, 1, 7, 16, 15, 5, 0, 1, 8, 19, 18, 7, 1, 1, 8, 21, 23, 10, 1, 1, 9, 24
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 03 2017

Keywords

Comments

Number of partitions of n into distinct parts congruent to 1 mod 6.
Convolution of A281244 and A280456 is A098884. - Vaclav Kotesovec, Jan 18 2017

Examples

			a(32) = 3 because we have [31, 1], [25, 7] and [19, 13].
		

Crossrefs

Programs

  • Mathematica
    nmax = 105; CoefficientList[Series[Product[(1 + x^(6 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 6] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Product_{k>=0} (1 + x^(6*k+1)).
a(n) ~ exp(Pi*sqrt(n)/(3*sqrt(2)))/(2*2^(5/12)*sqrt(3)*n^(3/4)) * (1 + (Pi/(144*sqrt(2)) - 9/(4*sqrt(2)*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 18 2017

A339089 Number of compositions (ordered partitions) of n into distinct parts congruent to 5 mod 6.

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 6, 4, 1, 0, 0, 0, 6, 6, 1, 0, 0, 0, 12, 6, 1, 0, 0, 0, 18, 8, 1, 0, 0, 24, 24, 8, 1, 0, 0, 24, 30, 10, 1, 0, 0, 48, 42, 10, 1, 0, 0, 72, 48, 12, 1, 0, 0, 120, 60, 12, 1, 0, 120, 144
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 23 2020

Keywords

Examples

			a(33) = 6 because we have [17, 11, 5], [17, 5, 11], [11, 17, 5], [11, 5, 17], [5, 17, 11] and [5, 11, 17].
		

Crossrefs

Programs

  • Mathematica
    nmax = 86; CoefficientList[Series[Sum[k! x^(k (3 k + 2))/Product[1 - x^(6 j), {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=0} k! * x^(k*(3*k + 2)) / Product_{j=1..k} (1 - x^(6*j)).

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

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 3, 4, 1, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0, 1, 5, 5, 1
Offset: 0

Views

Author

Seiichi Manyama, Mar 20 2017

Keywords

Comments

Number of partitions into distinct parts 8*k-1.

Crossrefs

Cf. Product_{k>=1} (1 + x^(m*k-1)): A262928 (m=3), A147599 (m=4), A281243 (m=5), A281244 (m=6), A281245 (m=7), this sequence (m=8).

Programs

  • Mathematica
    CoefficientList[Series[Product[(1 + x^(8*k - 1)) , {k, 1, 91}], {x, 0, 91}], x] (* Indranil Ghosh, Mar 20 2017 *)
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 0; Do[If[Mod[k, 8] == 7, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Mar 20 2017 *)
  • PARI
    Vec(prod(k=1, 91, (1 + x^(8*k - 1))) + O(x^92)) \\ Indranil Ghosh, Mar 20 2017

Formula

a(n) ~ exp(sqrt(n/6)*Pi/2) / (2^(21/8) * 3^(1/4) * n^(3/4)) * (1 + (11*Pi/(384*sqrt(6)) - 3*sqrt(3/2)/(2*Pi))/sqrt(n)). - Vaclav Kotesovec, Mar 20 2017
G.f.: Sum_{k>=0} x^(k*(4*k + 3)) / Product_{j=1..k} (1 - x^(8*j)). - Ilya Gutkovskiy, Nov 24 2020
Showing 1-10 of 11 results. Next