A159910 Distance of prime quadruplets divided by 30, rounded towards the nearest integer.
0, 3, 3, 21, 22, 13, 7, 39, 7, 73, 126, 119, 88, 3, 11, 66, 29, 17, 53, 42, 101, 214, 104, 298, 252, 133, 255, 141, 76, 91, 168, 81, 45, 56, 203, 301, 43, 66, 291, 223, 92, 97, 442, 290, 437, 281, 38, 144, 549, 241, 29, 192, 11, 518, 266, 490, 122, 130, 13, 329, 85, 209
Offset: 1
Keywords
Examples
a(2) = A014561(2)-A014561(1) = 3-0, a(3) = A014561(3)-A014561(2) = 6-3, ...
Links
- Hugo Pfoertner, Table of n, a(n) for n = 1..10000
Programs
-
PARI
A159910( n, list=0, s=5 )={ my(o,p,q,r); until(n--<0, o=s; until( p+8==s=nextprime(s+2), p=q; q=r; r=s); list & p>o & print1((s-o)\30,","););(s-o)\30}
Comments