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.

A276557 Number of partitions of prime(n)^2 into squares of primes.

Original entry on oeis.org

1, 1, 2, 4, 17, 39, 191, 410, 1771, 13805, 26459, 170897, 556698, 988053, 3019206, 15074481, 70202708, 115639004, 498047289, 1281427052, 2039282754, 7981334946, 19374343049, 71015123687, 380553620426, 862797574415, 1292837481584, 2875949125749, 4270259833946, 9334145396729
Offset: 1

Views

Author

Ilya Gutkovskiy, Jun 14 2017

Keywords

Examples

			a(3) = 2 because third square of prime is 25 and we have [25], [9, 4, 4, 4, 4].
		

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[Product[1/(1 - x^Prime[k]^2), {k, 1, n}], {x, 0, Prime[n]^2}], {n, 1, 30}]

Formula

a(n) = [x^(prime(n)^2)] Product_{k>=1} 1/(1 - x^(prime(k)^2)).
a(n) = A090677(A001248(n)).