The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226498 The number of primes of the form i^2 + j^4 (A028916) <= 2^n. 3
1, 1, 2, 2, 3, 5, 7, 11, 17, 28, 43, 67, 108, 173, 272, 434, 690, 1115, 1772, 2815, 4528, 7267, 11646, 18799, 30378, 48956, 79270, 128267, 208509, 338533, 550262, 895284, 1457111, 2374753, 3874445, 6327042 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Iwaniec and Friedlander proved there are infinity of the primes of the form i^2+j^4, and hence a(n) increases without bound.
Does not count double representations.
LINKS
John Friedlander and Henryk Iwaniec, Using a parity-sensitive sieve to count prime values of a polynomial, PNAS February 18, 1997 94 (4) 1054-1058.
MATHEMATICA
mx = 2^40; lst = {}; Do[a = i^2 + j^4; If[ PrimeQ[a], AppendTo[lst, a]], {i, Sqrt[mx]}, {j, Sqrt[ Sqrt[mx - i^2]]}]; Table[ Length@ Select[ Union@ lst, # < 2^n &], {n, 40}]
PROG
(PARI) a(n)=my(N=2^n, v=List(), t); for(a=1, sqrt(N), forstep(b=a%2+1, sqrtint(sqrtint(N-a^2)), 2, t=a^2+b^4; if(isprime(t), listput(v, t)))); 1+#vecsort(Vec(v), , 8) \\ Charles R Greathouse IV, Jun 12 2013
CROSSREFS
Sequence in context: A214040 A077419 A125189 * A196375 A300440 A147997
KEYWORD
nonn
AUTHOR
Marek Wolf and Robert G. Wilson v, Jun 09 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 21 12:09 EDT 2024. Contains 372736 sequences. (Running on oeis4.)