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.

A241221 Primes obtained by merging 5 successive digits in the decimal expansion of sqrt(2) + sqrt(3) + sqrt(5).

Original entry on oeis.org

47441, 87383, 66809, 80953, 87119, 19753, 48163, 81637, 35591, 52967, 96763, 30727, 77621, 80809, 16903, 35051, 14159, 24877, 56437, 24677, 67723, 32077, 29429, 76831, 11257, 57367, 36787, 80207, 61141, 68351, 35129, 47701, 77017, 64579, 24671, 37277, 27701, 56873
Offset: 1

Views

Author

K. D. Bajpai, Apr 18 2014

Keywords

Comments

All the terms in the sequence are 5-digit primes because leading zeros are not permitted.

Examples

			a(1) = 47441, which is prime. It is the first occurrence of a 5-digit prime in the decimal expansion of sqrt(2) + sqrt(3) + sqrt(5), i.e., 5.3823323(47441)76203873830873445 ...
		

Crossrefs

Programs

  • Mathematica
    With[{len = 5},Select[FromDigits /@Partition[RealDigits[Sqrt[2] + Sqrt[3] + Sqrt[5], 10, 1000][[1]],len, 1], IntegerLength[#] == len && PrimeQ[#] &]]