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”).

A242185
Integers b which are the solution to the equation a^2 + b^3 = c^4, with integers a, b > 0, and indexed from A242183.
4
8, 18, 23, 36, 49, 108, 108, 126, 128, 135, 136, 143, 216, 225, 245, 288, 288, 300, 343, 368, 375, 400, 450, 500, 576, 588, 600, 648, 686, 693, 784, 900, 1026, 1098, 1125, 1156, 1183, 1215, 1350, 1350, 1440, 1458, 1568, 1628, 1638, 1681, 1728, 1728, 1863, 2000
OFFSET
1,1
LINKS
FORMULA
b = (c^4 - a^2)^(1/3) is an integer.
EXAMPLE
a(1)=8 since A242183(1)=6 and 6^4 = 28^2 + 8^3.
MATHEMATICA
(* after running the Mmca coding in A242183 *) k = 1; blst = {}; While[k < 6501, If[f@ k != {}, AppendTo[ blst, Table[#2, {1}] & @@@ f[k]]]; k++]; blst // Flatten (* Robert G. Wilson v, May 06 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Lars Blomberg, May 06 2014
STATUS
approved