A226821 Numbers of the form 3^j + 8^k, for j and k >= 0.
2, 4, 9, 10, 11, 17, 28, 35, 65, 67, 73, 82, 89, 91, 145, 244, 251, 307, 513, 515, 521, 539, 593, 730, 737, 755, 793, 1241, 2188, 2195, 2251, 2699, 4097, 4099, 4105, 4123, 4177, 4339, 4825, 6283, 6562, 6569, 6625, 7073, 10657, 19684, 19691, 19747, 20195, 23779
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
a = 3; b = 8; mx = 25000; Union[Flatten[Table[a^n + b^m, {m, 0, Log[b, mx]}, {n, 0, Log[a, mx - b^m]}]]]
Comments