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!)
A025406 Numbers that are the sum of 4 positive cubes in 2 or more ways. 8
219, 252, 259, 278, 315, 376, 467, 522, 594, 702, 758, 763, 765, 802, 809, 819, 856, 864, 945, 980, 1010, 1017, 1036, 1043, 1073, 1078, 1081, 1118, 1134, 1160, 1225, 1251, 1352, 1367, 1368, 1374, 1375, 1393, 1397, 1423, 1430, 1458, 1460, 1465, 1467, 1484 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
{n: A025457(n) >= 2}. - R. J. Mathar, Jun 15 2018
MAPLE
N:= 2000: # for terms <= N
S2:= {}: S1:= {}:
for x from 1 while x^3 < N do
for y from 1 to x while x^3 + y^3 < N do
for z from 1 to y while x^3 + y^3 + z^3 < N do
for w from 1 to z do
v:= x^3 + y^3 + z^3 + w^3;
if v > N then break fi;
if member(v, S1) then S2:= S2 union {v}
else S1:= S1 union {v}
fi
od od od od:
sort(convert(S2, list)); # Robert Israel, Feb 24 2021
CROSSREFS
Sequence in context: A252997 A126829 A171406 * A025404 A361343 A192086
KEYWORD
nonn
AUTHOR
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 May 1 23:54 EDT 2024. Contains 372178 sequences. (Running on oeis4.)