A094178 Numbers n such that 4n+1 is divisible only by primes of form 4m+1 (i.e., by the Pythagorean primes A002144).
1, 3, 4, 6, 7, 9, 10, 13, 15, 16, 18, 21, 22, 24, 25, 27, 28, 31, 34, 36, 37, 39, 42, 43, 45, 46, 48, 49, 51, 55, 57, 58, 60, 64, 66, 67, 69, 70, 72, 73, 76, 78, 79, 81, 84, 87, 88, 91, 93, 94, 97, 99, 100, 102, 105, 106, 108, 111, 112, 114, 115, 120, 121, 123, 126, 127
Offset: 1
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Programs
-
Haskell
import Data.List (elemIndices) a094178 n = a094178_list !! (n-1) a094178_list = map (+ 1) $ elemIndices 0 a125203_list -- Reinhard Zumkeller, Jan 02 2013
Extensions
More terms from Ray Chandler, Jun 20 2004
Comments