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.

A104843 Primes from merging of 2 successive digits in decimal expansion of e.

This page as a plain text file.
%I A104843 #27 Aug 29 2025 10:13:45
%S A104843 71,59,23,53,47,71,13,97,47,59,67,53,47,59,71,13,17,19,59,17,41,13,59,
%T A104843 29,43,29,29,59,73,13,23,79,43,23,29,53,31,19,19,11,73,83,41,79,89,41,
%U A104843 67,47,61,47,41,11,53,37,23,43,37,71,53,17,61,83,61,13,31,13,83,29,97
%N A104843 Primes from merging of 2 successive digits in decimal expansion of e.
%C A104843 Scan decimal expansion of e from left to right, recording any 2-digit primes seen. Overlaps are allowed in all the sequences in this family. - _N. J. A. Sloane_, Feb 05 2012
%C A104843 Leading zeros are not permitted, so each term is 2 digits in length. - _Harvey P. Dale_, Oct 23 2011
%H A104843 Vincenzo Librandi, <a href="/A104843/b104843.txt">Table of n, a(n) for n = 1..1000</a>
%H A104843 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/e.html">e</a>
%t A104843 With[{len=2},FromDigits/@Select[Partition[RealDigits[E,10,1000][[1]], len,1],PrimeQ[FromDigits[#]]&&IntegerLength[FromDigits[#]]==len&]] (* _Harvey P. Dale_, Oct 23 2011 *)
%Y A104843 Cf. A001113, A073246 (the one-digit primes in e), A104844 - A104862.
%K A104843 nonn,base,changed
%O A104843 1,1
%A A104843 Andrew G. West (WestA(AT)wlu.edu), Mar 27 2005
%E A104843 Changed offset from 0 to 1 by _Vincenzo Librandi_, Apr 21 2013