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-2 of 2 results.

A187874 Second smallest prime after n!.

Original entry on oeis.org

3, 3, 5, 11, 31, 131, 733, 5059, 40351, 362903, 3628819, 39916817, 479001643, 6227020873, 87178291241, 1307674368149, 20922789888041, 355687428096053, 6402373705728061, 121645100408832109, 2432902008176640037, 51090942171709440037
Offset: 0

Views

Author

Keywords

Examples

			2!=2, second smallest prime=5;
3!=6, second smallest prime=11; ..
		

Crossrefs

Programs

  • Mathematica
    NextPrime[Range[0, 30]!, 2]

A190801 Least semiprime whose prime factors differ by n!.

Original entry on oeis.org

6, 15, 55, 145, 889, 5089, 55561, 927889, 6169249, 39916921, 678585889, 13891047241, 417210398089, 1656387533161, 56229997825849, 481224167424529, 11026310270976961, 236887827111937369, 10826413936386055921
Offset: 1

Views

Author

Michel Lagneau, May 20 2011

Keywords

Comments

Appears to be the same as A037152(n) * A037153(n).

Examples

			a(5) = 889 because 889 = 7 * 127 , and 127 - 7 = 120 = 5!
		

Programs

  • Mathematica
    f[n_] := Block[{p=2}, While[! PrimeQ[p+n!], p=NextPrime[p]]; p*(p+n!)]; Table[f[n], {n, 60}]
Showing 1-2 of 2 results.