A159461 Numbers of previous and following composites of n-th prime.
0, 1, 2, 4, 4, 4, 4, 4, 8, 6, 6, 8, 4, 4, 8, 10, 6, 6, 8, 4, 6, 8, 8, 12, 10, 4, 4, 4, 4, 16, 16, 8, 6, 10, 10, 6, 10, 8, 8, 10, 6, 10, 10, 4, 4, 12, 22, 14, 4, 4, 8, 6, 10, 14, 10, 10, 6, 6, 8, 4, 10, 22, 16, 4, 4, 16, 18, 14, 10, 4, 8, 12, 12, 10, 8, 8, 12
Offset: 1
Keywords
Examples
For a(16) = 10 = 59 - 47 - 2 = prime(16+1) - prime(16-1) - 2 is the sum of the prime gaps minus two ending and starting at prime(16) = 53.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- Index entries for gaps between primes.
Programs
-
Mathematica
Join[{0},Total[Differences[#]-1]&/@Partition[Prime[Range[60]],3,1]] (* Harvey P. Dale, Nov 27 2011 *)
Comments