A137997 Numbers which are not the sum of a triangular number and zero or a prime = 3 (mod 4).
2, 5, 16, 27, 30, 42, 54, 61, 63, 90, 96, 129, 144, 165, 204, 216, 225, 285, 288, 309, 333, 340, 345, 390, 405, 423, 426, 448, 462, 525, 540, 556, 624, 651, 705, 801, 813, 876, 945, 960, 1056, 1230, 1371, 1380, 1470, 1491, 1827, 2085, 2157, 2181, 2220, 2355
Offset: 1
Keywords
Links
- Zhi-Wei SUN, A new conjecture: n=p+x(x+1)/2, Mar 23, 2008.
Programs
-
PARI
for( n=1,10^8, t=sqrtint( 2*n ); if( 0>= p = n-t*(t+1)/2, !p && next, p -= t++ ); until( !t--, isprime( p+=t ) || next; p%4==3 && next(2)); print1( n"," ))
Comments