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.

A008485 Coefficient of x^n in Product_{k>=1} 1/(1-x^k)^n.

Original entry on oeis.org

1, 1, 5, 22, 105, 506, 2492, 12405, 62337, 315445, 1605340, 8207563, 42124380, 216903064, 1119974875, 5796944357, 30068145905, 156250892610, 813310723925, 4239676354650, 22130265931900, 115654632452535, 605081974091875, 3168828466966388, 16610409114771900
Offset: 0

Views

Author

T. Forbes (anthony.d.forbes(AT)googlemail.com)

Keywords

Comments

Number of partitions of n into parts of n kinds. - Vladeta Jovovic, Sep 08 2002
Main diagonal of A144064. - Omar E. Pol, Jun 27 2012
From Peter Bala, Apr 18 2023: (Start)
The Gauss congruences a(n*p^k) == a(n*p^(k-1)) (mod p^k) hold for all primes p and all positive integers n and k.
Conjecture: the supercongruence a(p) == p + 1 (mod p^2) holds for all primes p >= 3. Cf. A270913. (End)

Crossrefs

Programs

  • Maple
    with(numtheory): etr:= proc(p) local b; b:=proc(n) option remember; `if`(n=0, 1, add(add(d*p(d), d=divisors(j)) *b(n-j), j=1..n)/n) end end: a:= n-> etr(j->n)(n): seq(a(n), n=0..30); # Alois P. Heinz, Sep 09 2008
  • Mathematica
    a[n_] := SeriesCoefficient[ Product[1/(1-x^k)^n, {k, 1, n}], {x, 0, n}]; a[1] = 1; Table[a[n], {n, 1, 24}] (* Jean-François Alcover, Feb 24 2015 *)
    Table[SeriesCoefficient[1/QPochhammer[x, x]^n, {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Mar 25 2016 *)
    Table[SeriesCoefficient[Exp[n*Sum[x^j/(j*(1-x^j)), {j, 1, n}]], {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, May 19 2018 *)
  • PARI
    {a(n)=polcoeff(prod(k=1,n,1/(1-x^k +x*O(x^n))^n),n)}
    
  • PARI
    {a(n)=n*polcoeff(log(1/x*serreverse(x*eta(x+x*O(x^n)))), n)} /* Paul D. Hanna, Apr 05 2012 */

Formula

a(n) = Sum_{pi} Product_{i=1..n} binomial(k_i+n-1, k_i) where pi runs through all nonnegative solutions of k_1+2*k_2+...+n*k_n=n. a(n) = b(n, n) where b(n, m)= m/n*Sum_{i=1..n} sigma(i)*b(n-i, m) is recurrence for number of partitions of n into parts of m kinds. - Vladeta Jovovic, Sep 08 2002
Equals the logarithmic derivative of A109085, the g.f. of which is (1/x)*Series_Reversion(x*eta(x)). - Paul D. Hanna, Apr 05 2012
Let G(x) = exp( Sum_{n>=1} a(n)*x^n/n ), then G(x) = 1/Product_{n>=1} (1-x^n*G(x)^n) is the g.f. of A109085. - Paul D. Hanna, Apr 05 2012
a(n) ~ c * d^n / sqrt(n), where d = A270915 = 5.352701333486642687772415814165..., c = A327279 = 0.26801521271073331568695383828... . - Vaclav Kotesovec, Sep 10 2014

Extensions

a(0)=1 prepended by Alois P. Heinz, Mar 30 2015

A270915 Decimal expansion of a constant related to the asymptotics of A008485.

Original entry on oeis.org

5, 3, 5, 2, 7, 0, 1, 3, 3, 3, 4, 8, 6, 6, 4, 2, 6, 8, 7, 7, 7, 2, 4, 1, 5, 8, 1, 4, 1, 6, 5, 3, 2, 7, 8, 7, 9, 8, 5, 1, 4, 8, 3, 2, 7, 1, 2, 8, 6, 9, 4, 7, 0, 9, 7, 3, 1, 9, 6, 9, 0, 7, 5, 6, 0, 6, 4, 1, 0, 2, 1, 5, 1, 2, 6, 7, 5, 3, 1, 5, 5, 2, 2, 3, 2, 3, 4, 2, 7, 6, 4, 4, 7, 8, 8, 5, 4, 2, 2, 8, 2, 2, 8, 1, 7
Offset: 1

Views

Author

Vaclav Kotesovec, Mar 25 2016

Keywords

Examples

			5.352701333486642687772415814165327879851483271286947097319690756...
		

Crossrefs

Programs

  • Mathematica
    RealDigits[1/r /. FindRoot[{s == 1/QPochhammer[r*s], QPochhammer[r*s] + r*s*Derivative[0, 1][QPochhammer][r*s, r*s] == (Log[1 - r*s] + QPolyGamma[0, 1, r*s]) / (s*Log[r*s])}, {r, 1/5}, {s, 1}, WorkingPrecision -> 120], 10, 105][[1]] (* Vaclav Kotesovec, Sep 26 2023 *)

Formula

Equals limit n->infinity A008485(n)^(1/n).

A327215 Self-convolution of A008485.

Original entry on oeis.org

1, 2, 11, 54, 279, 1442, 7530, 39474, 207693, 1095522, 5790116, 30650038, 162451560, 861920492, 4577055823, 24323292984, 129338944225, 688128700422, 3662798123481, 19504467792378, 103899170100154, 553642311668244, 2951010332435759, 15733439067954134
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 26 2019

Keywords

Crossrefs

Programs

  • Mathematica
    A008485[n_]:=SeriesCoefficient[Product[1/(1-x^k)^n, {k, 1, n}], {x, 0, n}];
    Table[Sum[A008485[k]*A008485[n-k], {k, 0, n}], {n, 0, 25}]

Formula

a(n) ~ c^2 * Pi * d^n, where d = A270915 = 5.352701333486642687772415814165... and c = A327279 = 0.26801521271073331568695383828... (see A008485).

A327280 Decimal expansion of a constant related to A270913 and A327214.

Original entry on oeis.org

2, 6, 0, 5, 4, 2, 2, 3, 3, 1, 4, 2, 4, 3, 8, 4, 6, 9, 4, 3, 3, 8, 6, 0, 8, 3, 2, 1, 6, 0, 4, 2, 2, 4, 8, 7, 6, 7, 6, 9, 0, 2, 0, 6, 0, 3, 9, 0, 8, 1, 6, 3, 0, 9, 2, 6, 3, 0, 2, 5, 9, 0, 1, 0, 2, 4, 1, 0, 3, 7, 5, 7, 2, 8, 9, 6, 2, 5, 4, 2, 2, 7, 8, 3, 5, 6, 5, 0, 8, 6, 0, 4, 0, 4, 4, 3, 1, 1, 4, 1, 0, 1, 0, 6, 2, 6
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 28 2019

Keywords

Examples

			0.26054223314243846943386083216042248767690206039081630926302590102410375728962...
		

Crossrefs

Programs

  • Mathematica
    RealDigits[1/Sqrt[s*Pi*Derivative[0, 2][QPochhammer][-1, r*s]]/r /. FindRoot[{2*s == QPochhammer[-1, r*s], r*Derivative[0, 1][QPochhammer][-1, r*s] == 2}, {r, 1/2}, {s, 1/2}, WorkingPrecision -> 120], 10, 106][[1]] (* Vaclav Kotesovec, Oct 02 2023 *)

Formula

Equals limit_{n->infinity} A270913(n) * sqrt(n) / A270914^n.
Showing 1-4 of 4 results.