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!)
A055393 Sum of a square and a nonnegative cube in more than one way. 4
1, 9, 17, 36, 64, 65, 89, 100, 108, 129, 145, 196, 225, 233, 252, 289, 297, 316, 388, 441, 449, 464, 505, 512, 537, 548, 576, 577, 593, 633, 729, 730, 737, 745, 784, 792, 793, 801, 841, 873, 1000, 1025, 1088, 1090, 1116, 1225, 1289, 1296, 1304, 1305, 1367 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(12) = 225 since 225 = 6^3 + 3^2 = 5^3 + 10^2 = 0^3 + 15^2.
MATHEMATICA
nn = 2000; t = Table[0, {nn}]; Do[n = i^2 + j^3; If[0 < n <= nn, t[[n]]++], {i, 0, Sqrt[nn]}, {j, 0, nn^(1/3)}]; Flatten[Position[t, _?(# > 1 &)]] (* T. D. Noe, Dec 08 2012 *)
CROSSREFS
Sequence in context: A173788 A097478 A147026 * A147082 A145941 A245542
KEYWORD
nice,nonn
AUTHOR
Henry Bottomley, May 12 2000
EXTENSIONS
Extended by T. D. Noe, Dec 08 2012
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)