A274012 Integers n such that n^3 is the average of a nonzero square and a nonzero fourth power.
1, 5, 16, 25, 26, 40, 41, 50, 80, 81, 125, 250, 256, 365, 386, 400, 405, 416, 425, 450, 457, 477, 625, 626, 640, 656, 800, 841, 845, 1000, 1125, 1153, 1210, 1225, 1280, 1296, 1681, 1825, 2000, 2025, 2057, 2106, 2197, 2312, 2401, 3042, 3125, 3240, 3250, 3321, 3362, 3400, 3625
Offset: 1
Keywords
Examples
5 is a term because 5^3 = (13^2 + 3^4) / 2.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A266212.
Programs
-
PARI
is(n) = for(x=1, (2*n) ^ 0.75, if(issquare(2*n^3 - x^4)&&2*n^3-x^4>0, return(1)); 0) \\ David A. Corneth, Jun 06 2016
Comments