login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A105383
Primes between 10^9 and 2^31 obtained from merging 10 successive digits in the decimal expansion of zeta(2) = Pi^2/6, taken modulo 2^32.
3
1902619757, 1896233719, 2025479923, 1979084773, 1834487573, 2069040007, 1357689757, 1422433483, 1421193281, 1865610371, 1664088953, 1716574481, 1524418627, 2018846497, 2028620161, 1384352219, 1828868887, 1485949159
OFFSET
1,1
COMMENTS
Erroneous version of A225143.
The author must have used signed 32-bit integers to store 10 successive digits of zeta(2). This is the sequence you get by taking the 10-digit numbers modulo 2^32 and then listing primes between 10^9 and 2^31 = 2147483648. - Jens Kruse Andersen, Sep 15 2014
In other words, primes p in (10^9, 2^31) such that either p, p + 2^32 or p + 2^32*2 is the concatenation of 10 successive digits in the decimal expansion of Pi^2/6. - Jianing Song, Mar 14 2021
EXAMPLE
From Jianing Song, Mar 14 2021: (Start)
1902619757 is a term since 1902619757 + 2^32 = 6197587053 is the concatenation of A013661(92) to A013661(101).
1896233719 is a term since it is the concatenation of A013661(108) to A013661(117). (End)
PROG
(PARI) A105383(n, x=Pi^2/6, m=10, silent=0)={m=10^m; for(k=1, default(realprecision), (isprime(p=x\.1^k%m%2^32)&&p*10>m&&p<2^31)||next; silent||print1(p", "); n--||return(p))} \\ Use e.g. \p999 to set precision to 999 digits. - M. F. Hasler, Nov 01 2014
CROSSREFS
Cf. A013661 (decimal expansion of Pi^2/6).
Cf. A103752 (a similar erroneous version).
Cf. (for Pi) A198175, A198170, A104824, A104825, A104826, A198171, A198172, A198173, A198174 and A104830 (a variant).
Cf. (for the Golden Ratio) A198177, A103773, A103789, A103793, A103808, A103809, A103810, A103811, A103812.
Cf., for the Euler-Mascheroni constant gamma: A198776, A198777, A198778, A198779, A198780, A198781, A198782, A198783, A198784.
Sequence in context: A263562 A204813 A103752 * A339251 A233002 A165075
KEYWORD
nonn,base
AUTHOR
Andrew G. West (WestA(AT)wlu.edu), Apr 03 2005
EXTENSIONS
Definition updated by M. F. Hasler, Nov 01 2014
STATUS
approved