A045911 Neither a cube nor the sum of a nonnegative cube and a prime.
9, 16, 22, 26, 28, 33, 35, 36, 52, 57, 63, 65, 76, 78, 82, 85, 92, 96, 99, 112, 118, 119, 120, 122, 126, 129, 133, 141, 146, 155, 160, 169, 170, 183, 185, 188, 202, 209, 210, 217, 225, 236, 244, 246, 248, 267, 273, 280, 286, 300, 302, 309, 326
Offset: 1
Keywords
References
- Computed by James Van Buskirk, who finds 6195 solutions between 0 and 3000000000.
Links
- D. Wilson, Table of n, a(n) for n = 1..6195
Crossrefs
Cf. A211167.
Programs
-
PARI
isA045911(n) = {if (ispower(n, 3), return (0)); forprime(p=2, n, if (ispower(n-p, 3), return (0));); return (1);} \\ Michel Marcus, May 19 2013
Comments