login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A024673 Position of 1 + n^3 in A024670 (distinct sums of cubes of distinct positive integers). 1
1, 2, 4, 7, 11, 16, 21, 28, 35, 43, 52, 61, 73, 84, 97, 109, 124, 140, 155, 173, 190, 210, 228, 250, 271, 292, 316, 338, 365, 391, 417, 444, 472, 501, 531, 560, 593, 626, 659, 694, 728, 765, 802, 842, 880, 919, 960, 1001, 1045, 1086, 1131, 1176, 1222, 1268, 1313 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
MAPLE
with(priqueue):
initialize(PQ):
insert([-9, 1, 2], PQ): v:= 0:
R:= NULL: count:= 0: i:= 0:
while count < 100 do
t:= extract(PQ);
w:= -t[1];
if floor(w) > v then i:= i+1; v:= floor(w) fi;
if t[2] = 1 then R:= R, i; count:= count+1 fi;
wp:= w + (t[3]+1)^3 - t[3]^3;
insert([-wp, t[2], t[3]+1], PQ);
if t[3] = t[2]+1 then
wp:= t[3]^3 + (t[3]+1)^3 + 1/10;
insert([-wp, t[3], t[3]+1], PQ);
fi
od:
R; # Robert Israel, Jan 21 2024
CROSSREFS
Sequence in context: A025718 A022783 A025708 * A002789 A083204 A061784
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset corrected by Sean A. Irvine, Jul 19 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)