login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A078393
Squarefree numbers which can be written as sum of a positive square and a positive cube.
1
2, 5, 10, 17, 26, 31, 33, 37, 43, 57, 65, 73, 82, 89, 91, 101, 113, 122, 127, 129, 134, 141, 145, 161, 170, 174, 177, 185, 197, 206, 217, 223, 226, 233, 241, 246, 257, 265, 269, 283, 290, 321, 337, 347, 353, 359, 362, 379, 381, 385, 401, 407, 427, 442, 443
OFFSET
1,1
EXAMPLE
7*13 = 91 = 8^2 + 3^3, therefore 91 is a term.
MATHEMATICA
spspcQ[{a_, b_}]:=AllTrue[{Sqrt[a], Surd[b, 3]}, IntegerQ]||AllTrue[{Sqrt[ b], Surd[ a, 3]}, IntegerQ]; Select[Range[500], SquareFreeQ[#] && Length[ Select[IntegerPartitions[#, {2}], spspcQ]]>0&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 13 2019 *)
CROSSREFS
Sequence in context: A003192 A018682 A375703 * A340045 A100292 A078325
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 25 2002
STATUS
approved