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

A193927
Numbers m such that A062039(m+1) < A062039(m).
4
3, 9, 13, 15, 19, 23, 34, 38, 42, 45, 50, 54, 57, 61, 71, 81, 92, 96, 99, 107, 120, 133, 150, 157, 161, 180, 190, 214, 234, 236, 246, 254, 261, 270, 273, 279, 292, 297, 301, 322, 329, 335, 339, 361, 386, 390, 396, 398, 419, 425, 427, 453, 463, 468, 478, 494
OFFSET
1,1
COMMENTS
a(n) = - A193926(a(n));
complement of A193928, A062039(a(n)+1) < A062039(a(n)).
LINKS
PROG
(Haskell)
import Data.List (findIndices)
a193927 n = a193927_list !! (n-1)
a193927_list = findIndices (< 0) a193926_list
CROSSREFS
Sequence in context: A029458 A050571 A234286 * A111230 A046865 A063791
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 10 2011
STATUS
approved