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.

A198783 Primes from merging of 9 successive digits in decimal expansion of Euler-Mascheroni constant.

Original entry on oeis.org

215664901, 593359399, 235988057, 362241739, 739976449, 33374293, 337429373, 733773767, 87352039, 670853233, 146694029, 151905877, 267331399, 413954911, 984234877, 384310939, 310939973, 93997361, 939973613, 306088933, 60889331, 759271351, 549570661, 789358679
Offset: 1

Views

Author

Harvey P. Dale, Oct 29 2011

Keywords

Comments

In contrast to A104943, leading zeros are permitted, so this sequence contains all terms of A104943 and additional primes with fewer than 9 digits.

Crossrefs

Programs

  • Maple
    Digits := 620 ;
    for sh from 8 do
            p := floor(gamma*10^sh) mod 1000000000 ;
            if isprime(p) then
                    printf("%d,",p);
            end if;
    end do: # R. J. Mathar, Oct 31 2011
  • Mathematica
    Select[FromDigits/@Partition[RealDigits[EulerGamma,10,520][[1]],9,1],PrimeQ] (* Harvey P. Dale, Jun 03 2021 *)