A251538 Numbers n such that A098548(2n+3) > A098548(2n+1) + 6.
2, 6, 10, 14, 18, 22, 26, 30, 33, 37, 41, 45, 49, 53, 57, 61, 65, 69, 73, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116, 119, 123, 127, 131, 135, 139, 143, 147, 151, 155, 159, 162, 166, 170, 174, 178, 182, 186, 190, 194, 198, 202, 205, 209, 213, 217, 221, 225
Offset: 1
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..100000
Programs
-
Haskell
a251538 n = a251538_list !! (n-1) a251538_list = filter (\x -> a098548 (2*x+3) > a098548 (2*x+1) + 6) [1..] -- Reinhard Zumkeller, Dec 08 2014
Formula
a(i) = (A251537(i)-1)/2 for all i.