A242835 Primes formed by the initial digits of the decimal expansion of the square root of 5.
2, 223, 22360679774997896964091
Offset: 1
Examples
Decimal expansion of sqrt(5) begins: 2.23606797749978969640917366... - _Wesley Ivan Hurt_, May 26 2014
Programs
-
Mathematica
Module[{d=25,f},f=RealDigits[Sqrt[5],10,d][[1]];Select[ Table[ FromDigits[ Take[f,n]],{n,d}],PrimeQ]] (* Harvey P. Dale, Oct 29 2020 *)
Comments