OFFSET
1,3
LINKS
Robert Israel, Table of n, a(n) for n = 1..439 (terms <= 10^12)
EXAMPLE
A000217(13) = Sum_{k=1..13} k = 91 = 216 - 125 = 6^3 - 5^3, so 91 is in the sequence. - Peter Munn, Dec 05 2022
MAPLE
M:= 10^7: # for terms <= M
S:= {0}:
for x from 1 while 3*x^2 - 3*x + 1 < M do
if x^3 < M then Y:= 0 else Y:= ceil(x^3-M) fi;
S:= S union select(t -> issqr(1+8*t), {seq(x^3 - y^3, y = Y .. x-1)});
od:
sort(convert(S, list)); # Robert Israel, Dec 05 2023
MATHEMATICA
With[{n = 5000}, Intersection[(#1*((#1 + 1)/2) & ) /@ Range[0, n], Flatten[Outer[ #1^3 - #2^3 &, Range[n], Range[0, n - 1]]]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Pein (petsie(AT)dordos.net), Jun 13 2007, Jun 14 2007
STATUS
approved