A167843 Obtuse-angled primes.
113, 127, 137, 139, 149, 157, 167, 179, 199, 211, 223, 227, 229, 233, 239, 257, 269, 277, 311, 331, 337, 347, 349, 359, 367, 379, 389, 421, 431, 433, 443, 449, 457, 467, 479, 499, 521, 541, 557, 569, 577, 599, 631, 641, 643, 653, 661, 677, 733, 743, 751, 761
Offset: 1
Links
- Michael S. Branicky, Table of n, a(n) for n = 1..914
Crossrefs
Programs
-
Python
# uses agen() from A135603 from sympy import isprime g = filter(isprime, agen()) print([next(g) for n in range(1, 53)]) # Michael S. Branicky, Aug 03 2022
Extensions
a(12) and beyond from Michael S. Branicky, Aug 03 2022
Comments