STATUS
editing
approved
editing
approved
IntegerExponent[#, 2]&/@(Times@@Range[#[[1]]+1, #[[2]]-1]&/@Partition[ Prime[ Range[ 80]], 2, 1]) (* Harvey P. Dale, Aug 12 2024 *)
approved
editing
editing
approved
Exponent of highest power of 2 dividing the product of the composite numbers between the n-th prime and the (n+1)-st prime.
Exponent of highest power of 2 dividing the product of composite numbers between the n-th prime and the (n+1)-st prime.
reviewed
editing
proposed
reviewed
editing
proposed
(pythonPython)
proposed
editing
editing
proposed
(python)
from sympy import prime
def A276133(n): return (p:=prime(n+1)-1)-p.bit_count()-(q:=prime(n))+q.bit_count() # Chai Wah Wu, Jul 10 2022
approved
editing