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

A301335 a(n) = [x^n] 1/(1 + (1/2)*n*(1 - theta_3(x))), where theta_3() is the Jacobi theta function.

Original entry on oeis.org

1, 1, 4, 27, 260, 3175, 47304, 833147, 16941120, 390611331, 10070060200, 287028156162, 8962583345856, 304255011200647, 11156593415089808, 439452231820920000, 18505340390664634384, 829599437871129843839, 39447684087807950938908, 1983038000428208822539998, 105080571577382659860160800
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 18 2018

Keywords

Comments

Number of compositions (ordered partitions) of n into squares of n kinds.

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[1/(1 + (1/2) n (1 - EllipticTheta[3, 0, x])), {x, 0, n}], {n, 0, 20}]
    Table[SeriesCoefficient[1/(1 - n Sum[x^k^2, {k, 1, n}]), {x, 0, n}], {n, 0, 20}]

Formula

a(n) = [x^n] 1/(1 - n*Sum_{k>=1} x^(k^2)).
a(n) ~ n^n * (1 + 1/n^2 - 3/n^3 + 1/(2*n^4) - 13/(2*n^5) + 127/(6*n^6) - 4/n^7 + 335/(8*n^8) - 665/(4*n^9) + 337/(15*n^10) + ...). - Vaclav Kotesovec, Mar 19 2018

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

Original entry on oeis.org

1, 1, 3, 13, 51, 201, 825, 3431, 14355, 60493, 256463, 1092268, 4669665, 20029036, 86148373, 371434173, 1604845715, 6946936628, 30121158813, 130795358333, 568709929191, 2475778867547, 10789659781640, 47069225185789, 205524447217185, 898163031782576, 3928112419640126
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 21 2018

Keywords

Comments

Number of partitions of n into triangular numbers of n kinds.

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[Product[1/(1 - x^(k (k + 1)/2))^n, {k, 1, n}], {x, 0, n}], {n, 0, 26}]
Showing 1-2 of 2 results.