cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A103668 Number of semiprimes between prime(n) and prime(n+1).

Original entry on oeis.org

0, 1, 1, 2, 0, 2, 0, 2, 2, 0, 3, 2, 0, 1, 2, 3, 0, 2, 1, 0, 2, 1, 3, 4, 0, 0, 1, 0, 1, 6, 1, 2, 0, 5, 0, 1, 3, 1, 1, 2, 0, 3, 0, 1, 0, 6, 7, 1, 0, 0, 2, 0, 2, 2, 2, 2, 0, 1, 1, 0, 3, 7, 1, 0, 1, 6, 2, 3, 0, 0, 2, 3, 1, 1, 2, 1, 4, 1, 2, 4, 0, 2, 0, 1, 0, 3, 3, 1, 0, 1, 4, 3, 1, 2, 2, 1, 5, 0, 7, 3, 3, 2, 2, 0, 1
Offset: 1

Views

Author

Zak Seidov, Feb 12 2005

Keywords

Examples

			a(4)=2 because between prime(4)=7 and prime(5)=11 there are two semiprimes: 3*3 and 2*5.
a(11)=3 because between p(11)=31 and p(12)=37 there are three semiprimes: 33=3*11, 34=2*17 and 35=5*7.
		

Crossrefs

The first occurrence of k = 0, 1, 2, ... is at position 1, 2, 4, 11, 24, 34, 30, 47, ... (A103669).
Primes: A000040, semiprimes: A001358, number of primes between two successive semiprimes: A088700.

Programs

A103654 Primes which are the average of two successive semiprimes.

Original entry on oeis.org

5, 53, 67, 89, 113, 131, 173, 211, 251, 293, 307, 337, 379, 409, 449, 487, 491, 499, 631, 683, 701, 727, 751, 769, 787, 919, 941, 953, 991, 1009, 1039, 1051, 1063, 1117, 1193, 1259, 1399, 1459, 1471, 1499, 1511, 1567, 1627, 1697, 1709, 1733, 1759, 1787, 1801
Offset: 1

Views

Author

Zak Seidov, Feb 12 2005

Keywords

Examples

			a(3)=67 because 65 and 69 are two successive semiprimes closest to 67 and 67=(65+69)/2;a(333)=22679 because 22677 and 22691 are two successive semiprimes closest to 22679 and 22679=(22677+22681)/2.
		

Crossrefs

Indices of these primes: A103655. Primes: A000040, semiprimes: A001358, number of primes between successive semiprimes: A088700, number of semiprimes between two successive primes: A103668.

Programs

  • PARI
    list(lim)=my(v=List(),u=v,t,lim2=lim+log(lim)^2);forprime(p=2,sqrt(lim2),t=p;forprime(q=p,lim2\t,listput(v,t*q)));v=vecsort(Vec(v));for(i=2,#v,t=(v[i]+v[i-1])/2;if(denominator(t)==1&&isprime(t),if(t>lim,break,listput(u,t))));Vec(u) \\ Charles R Greathouse IV, Oct 08 2012

Formula

p=(q+r)/2, where q

p are two successive semiprimes closest to p.

A103655 Indices of primes which are the average of two successive semiprimes.

Original entry on oeis.org

3, 16, 19, 24, 30, 32, 40, 47, 54, 62, 63, 68, 75, 80, 87, 93, 94, 95, 115, 124, 126, 129, 133, 136, 138, 157, 160, 162, 167, 169, 175, 177, 179, 187, 196, 205, 222, 232, 233, 239, 240, 247, 258, 265, 267, 270, 274, 277, 279, 298, 299, 318, 327, 335, 336, 339
Offset: 1

Views

Author

Zak Seidov, Feb 12 2005

Keywords

Examples

			19 is a member because p(19)=67; 65 and 69 are two successive semiprimes closest to 67 and 67=(65+69)/2.
		

Crossrefs

Corresponding primes: A103654. Primes: A000040, semiprimes: A001358, number of primes between two successive semiprimes: A088700, number of semiprimes between two successive primes: A103668.

Programs

  • Mathematica
    PrimePi[#]&/@Select[Mean/@Partition[Select[Range[2500],PrimeOmega[#]==2&],2,1],PrimeQ] (* Harvey P. Dale, Sep 08 2024 *)

Formula

a(n)=pi(A103654(n)).
Showing 1-3 of 3 results.