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.

Previous Showing 11-12 of 12 results.

A284830 Expansion of Sum_{i>=1} x^(i^2)/(1 - x^(i^2)) * Product_{j>=i} 1/(1 - x^(j^2)).

Original entry on oeis.org

1, 2, 3, 5, 6, 8, 10, 14, 16, 19, 23, 30, 33, 38, 44, 55, 60, 69, 77, 93, 102, 113, 126, 148, 162, 177, 198, 226, 246, 268, 293, 334, 361, 392, 424, 480, 516, 556, 601, 668, 721, 773, 835, 917, 990, 1054, 1129, 1239, 1325, 1415, 1508, 1649, 1757, 1875, 1990, 2157, 2303, 2441, 2595, 2796
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 03 2017

Keywords

Comments

Total number of smallest parts in all partitions of n into squares (A000290).

Examples

			a(9) = 16 because we have [9], [4, 4, 1], [4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1] and 1 + 1 + 5 + 9 = 16.
		

Crossrefs

Programs

  • Mathematica
    nmax = 60; Rest[CoefficientList[Series[Sum[x^i^2/(1 - x^i^2) Product[1/(1 - x^j^2), {j, i, nmax}], {i, 1, nmax}], {x, 0, nmax}], x]]
  • PARI
    x='x+O('x^61); Vec(sum(i=1, 60, x^i^2/(1 - x^i^2) * prod(j=i, 60, 1/(1 - x^j^2)))) \\ Indranil Ghosh, Apr 04 2017

Formula

G.f.: Sum_{i>=1} x^(i^2)/(1 - x^(i^2)) * Product_{j>=i} 1/(1 - x^(j^2)).

A284831 Expansion of Sum_{i>=1} x^(i^3)/(1 - x^(i^3)) * Product_{j>=i} 1/(1 - x^(j^3)).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 14, 16, 18, 20, 22, 26, 27, 30, 33, 36, 39, 42, 45, 51, 52, 56, 61, 65, 70, 75, 80, 89, 91, 97, 104, 110, 117, 124, 131, 143, 146, 154, 164, 171, 180, 189, 198, 213, 217, 227, 240, 248, 259, 272, 282, 301, 307, 320, 337, 347, 361, 376, 390, 414, 422, 439, 461, 474, 492, 512
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 03 2017

Keywords

Comments

Total number of smallest parts in all partitions of n into cubes (A000578).

Examples

			a(10) = 12 because we have [8, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] and 2 + 10 = 12.
		

Crossrefs

Programs

  • Mathematica
    nmax = 70; Rest[CoefficientList[Series[Sum[x^i^3/(1 - x^i^3) Product[1/(1 - x^j^3), {j, i, nmax}], {i, 1, nmax}], {x, 0, nmax}], x]]

Formula

G.f.: Sum_{i>=1} x^(i^3)/(1 - x^(i^3)) * Product_{j>=i} 1/(1 - x^(j^3)).
Previous Showing 11-12 of 12 results.