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.

A103265 Number of partitions of n in which both even and odd square parts occur in 2 forms c, c* and with multiplicity 1. There is no restriction on parts which are twice squares.

Original entry on oeis.org

1, 2, 2, 2, 4, 6, 6, 6, 8, 12, 14, 14, 16, 22, 26, 26, 30, 38, 44, 46, 52, 62, 70, 74, 80, 96, 110, 116, 124, 146, 166, 174, 186, 210, 238, 254, 272, 302, 338, 362, 384, 426, 470, 502, 532, 588, 646, 686, 726, 792, 872, 926, 980, 1062
Offset: 0

Views

Author

Noureddine Chair, Feb 27 2005

Keywords

Comments

Convolution of A001156 and A033461. - Vaclav Kotesovec, Aug 18 2015

Examples

			E.g. a(8)=8 because 8 can be written as 8, 44*, 422, 4*22, 4211*, 4*211*, 2222, 22211*.
		

Crossrefs

Programs

  • Maple
    series(product((1+x^(k^2))/(1-x^(k^2)),k=1..100),x=0,100);
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1+x^(k^2)) / (1-x^(k^2)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 18 2015 *)

Formula

G.f.: Product_{k>0}((1+x^k^2)/(1-x^k^2)).
a(n) ~ exp(3 * ((4-sqrt(2))*zeta(3/2))^(2/3) * Pi^(1/3) * n^(1/3) / 4) * ((4-sqrt(2))*zeta(3/2))^(2/3) / (2^(7/2) * sqrt(3) * Pi^(7/6) * n^(7/6)). - Vaclav Kotesovec, Dec 29 2016

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

Original entry on oeis.org

1, 2, 3, 4, 7, 10, 13, 16, 22, 30, 38, 46, 58, 74, 90, 106, 129, 158, 190, 222, 264, 314, 370, 426, 495, 580, 674, 772, 886, 1024, 1174, 1332, 1512, 1724, 1961, 2210, 2494, 2818, 3180, 3558, 3984, 4468, 5003, 5572, 6202, 6918, 7698, 8530, 9440, 10466, 11589
Offset: 0

Views

Author

Vaclav Kotesovec, Dec 08 2016

Keywords

Comments

Number of partitions of n into squares of 2 kinds. - Ilya Gutkovskiy, Jan 23 2018

Crossrefs

Programs

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

Formula

a(n) ~ exp(3 * Pi^(1/3) * Zeta(3/2)^(2/3) * n^(1/3) / 2^(2/3)) * Zeta(3/2) / (8 * sqrt(3) * Pi^2 * n^(3/2)). - Vaclav Kotesovec, Dec 29 2016

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

Original entry on oeis.org

1, 2, 1, 0, 2, 4, 2, 0, 1, 4, 5, 2, 0, 4, 8, 4, 2, 6, 7, 4, 5, 8, 6, 4, 4, 10, 15, 8, 1, 12, 24, 12, 1, 8, 19, 18, 10, 8, 16, 24, 17, 16, 23, 20, 12, 22, 34, 20, 8, 20, 42, 38, 18, 18, 42, 52, 30, 20, 34, 46, 34, 30, 46, 48, 36, 46, 72, 58, 33, 42, 71, 72, 41
Offset: 0

Views

Author

Vaclav Kotesovec, Dec 08 2016

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 100; CoefficientList[Series[Product[(1 + x^(k^2))^2, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 20; poly = ConstantArray[0, nmax^2 + 1]; poly[[1]] = 1; poly[[2]] = 2; poly[[3]] = 1; Do[Do[Do[poly[[j + 1]] += poly[[j - k^2 + 1]], {j, nmax^2, k^2, -1}];, {p, 1, 2}], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Dec 09 2016 *)

Formula

a(n) ~ exp(3 * Pi^(1/3) * ((sqrt(2)-1) * Zeta(3/2))^(2/3) * n^(1/3) / 2) * sqrt(2/3) * ((sqrt(2)-1) * Zeta(3/2) / Pi)^(1/3) / (4*n^(5/6)). - Vaclav Kotesovec, Dec 09 2016
Showing 1-3 of 3 results.