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.

A102415 Greatest semiprime less than n-th prime.

Original entry on oeis.org

4, 6, 10, 10, 15, 15, 22, 26, 26, 35, 39, 39, 46, 51, 58, 58, 65, 69, 69, 77, 82, 87, 95, 95, 95, 106, 106, 111, 123, 129, 134, 134, 146, 146, 155, 161, 166, 169, 178, 178, 187, 187, 194, 194, 209, 221, 226, 226, 226, 237, 237, 249, 254, 262, 267, 267, 274, 278, 278
Offset: 3

Views

Author

Reinhard Zumkeller, Jan 08 2005

Keywords

Examples

			a(3) = 4 since 4 is the greatest semiprime less than prime(3) = 5.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Module[{m = Prime[n] - 1}, While[PrimeOmega[m] != 2, m--]; m]; Array[a, 60, 3] (* Amiram Eldar, Feb 06 2020 *)
  • PARI
    a(n) = {sp = prime(n)-1; while(bigomega(sp) != 2, sp--); sp;} \\ Michel Marcus, Mar 04 2017

Formula

a(n) < A000040(n) < A102414(n).