A250482 Numbers of the form 2^x + y^2, with x and y >=0.
1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 16, 17, 18, 20, 24, 25, 26, 27, 29, 32, 33, 36, 37, 38, 40, 41, 44, 48, 50, 51, 52, 53, 57, 64, 65, 66, 68, 72, 73, 80, 81, 82, 83, 85, 89, 96, 97, 100, 101, 102, 104, 108, 113, 116, 122, 123, 125, 128, 129, 132, 137, 144
Offset: 1
Keywords
Examples
12 is in this sequence because 2^3+2^2 = 12. 51 is in this sequence because 2^1+7^2 = 51.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..2500
Crossrefs
Programs
-
Mathematica
nn=15; Union[Select[Flatten[Table[2^x + y^2, {x, 0, nn}, {y, 0, nn}]], # <=nn^2 &]]
-
PARI
isok(n) = {k=0; while (2^k <= n, if (issquare(n - 2^k), return(1)); k++;); return (0);} \\ Michel Marcus, Nov 24 2014
Comments