A088649 Duplicate of A020498.
1, 3, 7, 9, 13, 19, 21, 27, 31, 33, 37, 43, 49, 51, 57, 63, 69, 73, 79, 87, 91, 97, 99, 103
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.
a(4)= 4 and the primes arising are 5, 7, 11, and 13.
a:=proc(n) if isprime(2*n+5) then n end if end proc: seq(a(2*n-1), n=1..170); # Emeric Deutsch, Aug 17 2008
Select[Range[1,307,2],PrimeQ[2#+5]&] (* James C. McMahon, Jul 26 2025 *)
Comments