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.

Previous Showing 11-12 of 12 results.

A276196 Smallest prime >= decimal expansion of e truncated to n places (A011543).

Original entry on oeis.org

2, 29, 271, 2719, 27191, 271829, 2718281, 27182839, 271828199, 2718281831, 27182818309, 271828182863, 2718281828489, 27182818284617, 271828182845909, 2718281828459051, 27182818284590483, 271828182845904533, 2718281828459045269, 27182818284590452387, 271828182845904523609
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 24 2016

Keywords

Examples

			a(5) = 271829, since this is the smallest prime >= floor(e*10^5) = 271828.
e = 2.71828182845904523536028747135266249775724...
		

Crossrefs

Programs

  • Mathematica
    Table[NextPrime[Floor[E 10^n] - 1], {n, 0, 20}]

Formula

a(n) = A007918(A011543(n)).
a(n) = A000040(A000720(A011543(n)-1)+1).
a(A064118(n)-1) = A007512(n).

A283158 Numbers k such that A011544(k-1) is a prime.

Original entry on oeis.org

1, 85, 555, 1508, 1781, 4224, 7037, 43740
Offset: 1

Views

Author

XU Pingya, Mar 01 2017

Keywords

Comments

For k <= 16000, there are seven primes in sequence A011544.
Round(e*10^112279) = floor(e*10^112279), and floor(e*10^112279) = A011544(112279) (=A007512(7)) is a prime. Thus 112280 = A064118(7) is also a term.

Crossrefs

Programs

  • Mathematica
    Do[If[PrimeQ[Round[E*10^(n-1)]],Print[n]],{n,16000}]

Extensions

a(2) = 85 added by Jason Yuen, Jun 16 2025
a(8) from Michael S. Branicky, Jun 24 2025
Previous Showing 11-12 of 12 results.