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.

A248801 Number of sets of nonzero squares with sum <= n.

Original entry on oeis.org

1, 2, 2, 2, 3, 4, 4, 4, 4, 5, 6, 6, 6, 7, 8, 8, 9, 10, 10, 10, 11, 12, 12, 12, 12, 14, 16, 16, 16, 18, 20, 20, 20, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 30, 30, 32, 34, 34, 34, 36, 39, 40, 41, 43, 45, 46, 47, 48, 49, 50, 50, 52, 55, 56, 57, 61, 64, 64, 65
Offset: 0

Views

Author

Robert Israel, Oct 14 2014

Keywords

Comments

Partial sums of A033461.

Examples

			For n=5 the sets are {}, {1^2}, {2^2}, {1^2, 2^2} so a(5) = 4.
		

Crossrefs

Cf. A033461.

Programs

  • Maple
    N:= 200: # to get a(0) to a(N)
    g:= (1-x)^(-1)*mul(1 + x^(m^2), m=1 .. floor(sqrt(N))):
    S:= series(g, x, N+1):
    seq(coeff(S,x,j),j=0..N);
  • Mathematica
    CoefficientList[Series[(1 - x)^(-1) Product[1 + x^(k^2), {k, 50}], {x, 0, 50}], x] (* Vincenzo Librandi, Oct 15 2014 *)
    b[n_, i_] := b[n, i] = If[n==0, 1, If[i<1, 0, b[n, i-1] + If[i^2>n, 0, b[n-i^2, i-1]]]]; Table[b[n, Floor[Sqrt[n]]], {n, 0, 100}] // Accumulate (* Jean-François Alcover, Apr 17 2019, after Alois P. Heinz in A033461 *)

Formula

G.f.: (1-x)^(-1) * product(k>=1, 1 + x^(k^2)).