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.
%I A212374 #19 Sep 08 2022 08:46:02 %S A212374 47,139,277,461,599,691,829,967,1013,1151,1289,1381,1427,1657,1933, %T A212374 1979,2347,2393,2531,3037,3083,3221,3313,3359,3727,3911,4003,4049, %U A212374 4463,4831,4877,4969,5107,5153,5521,5659,5843,5981,6073,6211,6257,6763,6947,7039,7177 %N A212374 Primes congruent to 1 mod 23. %C A212374 This sequence is not the same as A040984. First disagreement at index 34: a(34)=5153, A040984(34)=5521. %H A212374 Bruno Berselli, <a href="/A212374/b212374.txt">Table of n, a(n) for n = 1..1000</a> %F A212374 a(n) ~ 22n log n. - _Charles R Greathouse IV_, Jul 03 2016 %p A212374 select(p->irem(p, 23)=1, [ithprime(i)$i=1..1000])[]; # _Alois P. Heinz_, Sep 12 2012 %t A212374 Select[Prime[Range[1000]], Mod[#, 23] == 1 &] %t A212374 Select[Range[1,7200,23],PrimeQ] (* _Harvey P. Dale_, Jul 02 2018 *) %o A212374 (Magma) [p: p in PrimesUpTo(7200) | p mod 23 eq 1]; %o A212374 (PARI) is(n)=isprime(n) && n%23==1 \\ _Charles R Greathouse IV_, Jul 03 2016 %Y A212374 Cf. A100201, A102734, A141908-A141926, A040984. %K A212374 nonn,easy %O A212374 1,1 %A A212374 _Bruno Berselli_, Sep 12 2012