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

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

Original entry on oeis.org

1, 2, 3, 5, 7, 9, 13, 17, 21, 27, 34, 41, 51, 62, 73, 88, 105, 122, 144, 168, 193, 225, 260, 296, 340, 388, 438, 498, 564, 632, 713, 802, 894, 1001, 1118, 1239, 1380, 1533, 1692, 1873, 2070, 2275, 2508, 2760, 3022, 3317, 3637, 3969, 4341, 4742, 5159, 5624, 6125, 6645, 7220, 7839
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 13 2018

Keywords

Comments

Partial sums of A007294.
Number of partitions of n into triangular numbers if there are two kinds of 1's.

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0 or i=1, n+1,
          b(n, i-1)+(t->`if`(t>n, 0, b(n-t, i)))(i*(i+1)/2))
        end:
    a:= n-> b(n, isqrt(2*n)):
    seq(a(n), n=0..100);  # Alois P. Heinz, Apr 13 2018
  • Mathematica
    nmax = 55; CoefficientList[Series[1/(1 - x) Product[1/(1 - x^(k (k + 1)/2)), {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 55; CoefficientList[Series[1/(1 - x) Sum[x^(j (j + 1)/2)/Product[(1 - x^(k (k + 1)/2)), {k, 1, j}], {j, 0, nmax}], {x, 0, nmax}], x]

Formula

G.f.: (1/(1 - x))*Sum_{j>=0} x^(j*(j+1)/2)/Product_{k=1..j} (1 - x^(k*(k+1)/2)).
From Vaclav Kotesovec, Apr 13 2018: (Start)
a(n) ~ exp(3*Pi^(1/3) * Zeta(3/2)^(2/3) * n^(1/3) / 2) * Zeta(3/2)^(1/3) / (2^(5/2) * sqrt(3) * Pi^(4/3) * n^(5/6)).
a(n) ~ 2 * n^(2/3) / (Pi^(1/3) * Zeta(3/2)^(2/3)) * A007294(n). (End)

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

Original entry on oeis.org

1, 2, 1, 2, 4, 2, 3, 6, 3, 4, 10, 8, 5, 10, 11, 8, 14, 16, 11, 18, 22, 18, 23, 22, 22, 34, 31, 26, 39, 40, 33, 50, 56, 36, 53, 74, 51, 62, 86, 68, 77, 98, 86, 88, 102, 106, 120, 130, 120, 136, 157, 134, 157, 194, 155, 182, 241, 194, 196, 256, 237, 236, 288, 282, 273, 324
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 05 2018

Keywords

Comments

Number of partitions of n into distinct triangular parts (A000217), with 2 types of each part.
Self-convolution of A024940.

Crossrefs

Programs

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

Formula

G.f.: Product_{k>=1} (1 + x^A000217(k))^2.
a(n) ~ exp(3*Pi^(1/3) * ((sqrt(2)-1) * Zeta(3/2)/2)^(2/3) * n^(1/3)) * ((sqrt(2)-1) * Zeta(3/2) / (2*Pi))^(1/3) / (4*sqrt(3) * n^(5/6)). - Vaclav Kotesovec, Mar 05 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-3 of 3 results.