A262608 Primes p such that floor(10*p/Pi) mod 10 = 0.
19, 41, 107, 151, 173, 239, 283, 349, 421, 443, 487, 509, 619, 641, 751, 773, 839, 883, 971, 1087, 1103, 1109, 1153, 1307, 1373, 1439, 1483, 1549, 1571, 1637, 1747, 1907, 1951, 1973, 2017, 2039, 2083, 2237, 2281, 2347, 2551, 2617, 2683, 2749, 2837, 2903, 2969
Offset: 1
Keywords
Examples
19 is a term because floor(19*10/Pi) = 60 and 60 mod 10 = 0.
Programs
-
Mathematica
Select[Prime@ Range@ 432, Mod[Floor[10 #/Pi], 10] == 0 &] (* Michael De Vlieger, Dec 09 2015 *)
-
PARI
forprime(p=2, 1e4, if (10*(p\Pi) == 10*p\Pi , print1(p", "))) \\ Altug Alkan, Sep 26 2015
Extensions
More terms and better definition from Altug Alkan, Sep 26 2015
Comments