OFFSET
1,1
COMMENTS
Jud McCranie remarks that a(638) = 146858 is probably the last term.
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n=1..638
R. K. Guy, Every number is expressible as the sum of how many polygonal numbers?, Amer. Math. Monthly 101 (1994), 169-172.
MATHEMATICA
notSumQ[n_] := Reduce[0 <= x <= y <= z && n == x*(2x - 1) + y*(2y - 1) + z*(2z - 1), {x, y, z}, Integers] === False; A007536 = Reap[ Do[ If[notSumQ[n], Print[n]; Sow[n]], {n, 1, 135}]][[2, 1]] (* Jean-François Alcover, Jun 27 2012 *)
PROG
(MATLAB)
N = 10^7; % to get all terms up to N
M = floor((sqrt(1+8*N)+1)/4);
H = zeros(1, N);
H((1:M) .*(2*(1:M)-1)) = 1;
H2 = conv(H, H);
H2 = H2(1:N);
H3 = conv(H, H2);
HS = H(3:N) + H2(2:N-1) + H3(1:N-2);
find(HS==0) + 2 % Robert Israel, Jul 06 2016
CROSSREFS
KEYWORD
nonn,fini,nice
AUTHOR
EXTENSIONS
Corrected by T. D. Noe, Feb 14 2007
STATUS
approved