login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A196277
Numbers m such that A196274(m) > 1.
5
1, 2, 3, 4, 6, 8, 9, 10, 12, 14, 16, 17, 19, 20, 22, 25, 26, 27, 28, 34, 35, 37, 41, 43, 45, 46, 48, 50, 54, 55, 60, 65, 66, 67, 69, 73, 75, 77, 79, 81, 82, 86, 92, 93, 94, 100, 102, 106, 107, 109, 112, 114, 116, 117, 119, 122, 123, 126, 130, 134, 136, 137
OFFSET
1,2
COMMENTS
Complement of A196276; A196274(a(n)) > 1;
A047846(n+1) = a(n+1) - a(n).
LINKS
PROG
(Haskell)
import Data.List (findIndices)
a196277 n = a196277_list !! (n-1)
a196277_list = map (+ 1) $ findIndices (> 1) a196274_list
CROSSREFS
Sequence in context: A225729 A035033 A054219 * A368385 A280196 A143896
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 30 2011
STATUS
approved