login
A164266
The count of primes between the n-th and (n+1)-st perfect number.
1
6, 85, 928, 2062427, 391549471, 5192879231, 55890478433197117
OFFSET
1,1
FORMULA
a(n) = A000720(A000396(n+1)) - A000720(A000396(n)).
EXAMPLE
a(1) = 6 counts the 6 primes 7, 11, 13, 17, 19 and 23 between 6 and 28.
a(2) = 85 counts the 85 primes 29, 31, ..., 487, 491 between 28 and 496.
MATHEMATICA
PrimePi[Last[#]]-PrimePi[First[#]]&/@(Partition[(# (#+1))/2&/@ Select[ 2^Range[30]-1, PrimeQ], 2, 1]) (* Harvey P. Dale, Dec 27 2011 *)
CROSSREFS
First differences of A185174.
Sequence in context: A284522 A167252 A290011 * A136597 A381243 A064329
KEYWORD
nonn,hard,more
AUTHOR
EXTENSIONS
Edited by R. J. Mathar, Aug 26 2009
More terms from Harvey P. Dale, Dec 27 2011
a(7) from the data at A185174 added by Amiram Eldar, Sep 03 2024
STATUS
approved