A156115 The 3677th prime century apportioned with exactly one prime in each of its ten decades.
367603, 367613, 367621, 367637, 367649, 367651, 367663, 367673, 367687, 367699
Offset: 1
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.
4073 is in the sequence, representing the prime sequence 407203, 407207, 407219, 407221, 407233, 407249, 407257, 407263, 407273, 407287, 407291, 407299, with 2 primes in decades 0 and 9, and 1 prime in decades 1 to 8. - _R. J. Mathar_, May 03 2019
isA307890 := proc(n) local p, dec ; if not isprime(n) then false; else p := 100*(n-1) ; p := prevprime(p+10) ; for dec from 0 to 9 do if modp(floor(p/10), 10) <> dec then return false; end if; p := nextprime(p) ; end do: true ; end if; end proc: for i from 1 do p := ithprime(i) ; if isA307890(p) then printf("%d, \n", p) ; end if; end do: # R. J. Mathar, May 03 2019
Comments