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”).

A193928
Numbers m such that A062039(m) <= A062039(m+1).
2
0, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39, 40, 41, 43, 44, 46, 47, 48, 49, 51, 52, 53, 55, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82
OFFSET
1,3
COMMENTS
Complement of A193927, A062039(a(n)) <= A062039(a(n)+1).
LINKS
PROG
(Haskell)
import Data.List (findIndices)
a193928 n = a193928_list !! (n-1)
a193928_list = findIndices (0 <=) a193926_list
CROSSREFS
A193854 is a subsequence.
Sequence in context: A039140 A249031 A085302 * A146215 A086743 A285432
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 10 2011
STATUS
approved