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!)
A330558 a(n) = number of primes p <= 2*n+1 with Delta(p) == 0 mod 4, where Delta(p) = nextprime(p) - p. 5
0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
MAPLE
N:= 100: # for a(0)..a(N)
P:= select(isprime, [seq(i, i=3..nextprime(2*N+1), 2)]):
Delta:= P[2..-1]-P[1..-2] mod 4:
A:= Array(0..N): t:= 0: j:= 1:
for n from 0 to N do
m:= 2*n+1:
if m = P[j] then t:= t + charfcn[0](Delta[j]); j:= j+1 fi;
A[n]:= t
od:
convert(A, list); # Robert Israel, Dec 31 2019
PROG
(Magma) [#[p:p in PrimesInInterval(1, 2*n+1)| (NextPrime(p)-p) mod 4 eq 0]:n in [0..80]]; // Marius A. Burtea, Dec 31 2019
CROSSREFS
Sequences related to the differences between successive primes: A001223 (Delta(p)), A028334, A080378, A104120, A330556-A330561.
Sequence in context: A244160 A064099 A134021 * A237657 A244317 A130255
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 29 2019
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 April 19 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)