OFFSET
0,4
COMMENTS
Is there any n > 19 for which a(n) = 0? There are no others below 50000.
No others below 10^9. Heuristics suggest there are no more. - Charles R Greathouse IV, Sep 13 2013
REFERENCES
Underwood Dudley, "Mathematical Cranks", Mathematical Association of America 1992, p. 240.
Sci.math thread "Conjecture in 'Mathematical Cranks'", November 2006.
LINKS
T. D. Noe, Table of n, a(n) for n = 0..10000
EXAMPLE
4*3 + 3 = 15 = 1^2 + 2*7 = 3^2 + 2*3, so a(3) = 2.
MAPLE
f:= n -> nops(select(isprime, [seq]((4*n+3-(2*i+1)^2)/2, i=0..floor((sqrt(4*n+3)-1)/2)))): [seq](f(n), n=0..100);
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert Israel, Nov 02 2006
STATUS
approved