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

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

Original entry on oeis.org

0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

Ilya Gutkovskiy, Jan 27 2017

Keywords

Comments

Total number of parts in all partitions of n into distinct squares of primes (A001248).

Examples

			a(38) = 3 because we have [25, 9, 4].
		

Crossrefs

Programs

  • Maple
    Primes:= select(isprime, [$1..20]):
    g:= add(x^(p^2)/(1+x^(p^2)),p=Primes)*mul(1+x^(p^2),p=Primes):
    S:= series(g, x, 20^2+1):
    seq(coeff(S,x,n),n=1..20^2); # Robert Israel, Feb 08 2017
  • Mathematica
    nmax = 125; Rest[CoefficientList[Series[Sum[x^Prime[k]^2/(1 + x^Prime[k]^2), {k, 1, nmax}] Product[1 + x^Prime[k]^2, {k, 1, nmax}], {x, 0, nmax}], x]]

Formula

G.f.: Sum_{k>=1} x^(prime(k)^2)/(1 + x^(prime(k)^2)) * Product_{k>=1} (1 + x^(prime(k)^2)).
Showing 1-1 of 1 results.