[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A090430
a(n) = if Floor[2*Pi*PrimePi[m]/E] is prime then Floor[2*Pi*PrimePi[m]/E]
0
2, 11, 13, 23, 41, 43, 53, 67, 71, 73, 83, 97, 101, 113, 127, 131, 157, 173, 191, 233, 251, 263, 277, 281, 293, 307, 337, 349, 353, 367, 379, 383, 397, 409, 439, 443, 457, 487, 499, 503, 547, 557, 563, 577, 587, 607, 617, 619, 631, 647, 661, 677, 691, 709, 739
OFFSET
2,1
COMMENTS
An entropy power function based on the PrimePi distribution with N=n/PrimePi[n].
This function doesn't work as well as n/log(n).
REFERENCES
C. E. Shannon, The Mathematical Theory of Communication, page 93
MATHEMATICA
digits=25*200 f[n_]=Floor[2*Pi*PrimePi[n]/E] a=Delete[Union[Table[If [PrimeQ[f[n]]==True, f[n], 0], {n, 2, digits}]], 1]
CROSSREFS
Sequence in context: A191075 A045385 A090416 * A363215 A022115 A042453
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Jan 31 2004
STATUS
approved