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

A083383
Positions of records in A083382.
2
1, 2, 9, 26, 42, 57, 75, 76, 103, 116, 122, 143, 151, 172, 191, 197, 224, 236, 251, 266, 288, 316, 327, 338, 356, 372, 385, 401, 451, 482, 490, 501, 541, 558, 578, 586, 621, 636, 644, 670, 678, 692, 724, 735, 776, 801, 826, 851, 864, 872, 890, 906, 915, 924
OFFSET
0,2
LINKS
PROG
(Haskell)
a083383 n = a083383_list !! (n-1)
a083383_list = 1 : f 0 [2..] (tail a083382_list) where
f m (x:xs) (y:ys) | y <= m = f m xs ys
| otherwise = x : f y xs ys
-- Reinhard Zumkeller, Jun 10 2012
CROSSREFS
Sequence in context: A356401 A218460 A085070 * A221574 A082289 A014150
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 06 2003
EXTENSIONS
More terms from Vladeta Jovovic, Jun 06 2003
STATUS
approved