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.

A173647 Primes found in decimal expansion of 1/EulerGamma.

Original entry on oeis.org

17, 173, 173245471460063, 1732454714600633
Offset: 1

Views

Author

Michel Lagneau, Nov 24 2010

Keywords

Comments

Primes found in A098907.

Examples

			1/EulerGamma =1.732454714600633473583...  so a(1)=17 ; a(2) =173,...
		

Crossrefs

Programs

  • Maple
    Digits := 100; n0 := evalf(1/gamma); for i from 1 to 500 do x := trunc(10^i*n0):
      if isprime(x) then printf(`%d, `, x): fi: od: