A385504 Binomially timely primes: primes prime(k) that do not arrive late in comparison with the binomially weighted average of prime(1) .. prime(2k-1).
2, 3, 5, 7, 13, 19, 23, 31, 43, 47, 53, 61, 73, 79, 83, 89, 103, 107, 109, 113, 139, 151, 167, 181, 193, 197, 199, 211, 233, 239, 241, 271, 277, 281, 283, 293, 313, 317, 353, 359, 383, 389, 401, 443, 449, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 617
Offset: 1
Keywords
Examples
The binomially weighted averages can be computed by taking progressive averages as shown in the table below: n prime |<- progressive averages ... -> ------------------------------------------- 1: _2_ the _underlined_ values are the averaged primes 5/2 2: 3 _13/4_ <-- 13/4 is thus the 2nd averaged prime 4 33/8 3: 5 5 _83/16_ <-- 83/16 is thus the 3rd averaged prime 6 25/4 ... 4: 7 15/2 ... <-- 15/2 is the average of 6 and 9 9 ... 5: 11 ... ... 3 is less than 13/4, so 3 is in the sequence. 5 is less than 83/16, so 5 is in the sequence. If we continue the average table above, we find the 5th averaged prime is 10 + 147/256, and the 5th prime, 11, is greater than this, so 11 is not in the sequence.
Links
- Peter Munn, Table of n, a(n) for n = 1..2000
- Peter Munn, PARI program
- Peter Munn, Graph of race against complement within primes
Crossrefs
Programs
-
PARI
\\ See Links
Formula
{a(n) : n >= 1} = {prime(k) : k >= 1 and prime(k) <= A302334(k)}.
Comments