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

A173418 Primes formed by the initial digits of the decimal expansion of 1/(Golden Ratio).

Original entry on oeis.org

61, 61803398874989
Offset: 1

Views

Author

Michel Lagneau, Feb 17 2010

Keywords

Comments

The next term consists of the first 887 digits of 1/(Golden Ratio) and is too large to show here.

Crossrefs

Programs

  • Maple
    Digits := 1000: n0 := evalf((sqrt(5)-1)/2): for i from 1 to 10000 do t1 := trunc(10^i*n0): if isprime(t1) then print(t1): fi: od:
  • Mathematica
    With[{gr=RealDigits[1/GoldenRatio,10,1000][[1]]}, Select[Table[ FromDigits[ Take[ gr,n]], {n,1000}], PrimeQ]] (* Harvey P. Dale, Oct 17 2012 *)
Showing 1-1 of 1 results.