A255830 Numbers D such that D^2 = A^4 + B^5 + C^6 for some positive integers A, B, C.
7, 9, 17, 33, 72, 89, 96, 99, 105, 137, 171, 213, 218, 240, 320, 459, 503, 513, 525, 616, 761, 792, 833, 1048, 1127, 1257, 1369, 1395, 1536, 1551, 2025, 2457, 2600, 2610, 3267, 3312, 3600, 3681, 4032, 4100, 4125, 4128, 4201, 4901, 4976, 5001, 5225, 5880, 5975, 6167
Offset: 1
Keywords
Examples
(A, B, C) = (1, 4, 2) = 1^4 + 4^5 + 2^6 = 1 + 1024 + 64 = 1089 = 33^2, so 33 is a term. (A, B, C) = (1, 4, 8) = 1^4 + 4^5 + 8^6 = 1 + 1024 + 262144 = 263169 = 513^2, so 513 is a term.
Programs
-
PARI
is_A255830(D)=my(B,C=0,D2C6); while(1
A255830(D)&&print1(D",")) \\ Converted to integer arithmetic by M. F. Hasler, May 01 2015
Extensions
Inserted a(4)=33, a(18)=513 and removed doublet 1257 by Lars Blomberg, Apr 26 2015
Comments