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

A265413
Positions of records in A265410: a(0) = 1; for n >= 1, a(n) = 1 + A265412(n-1).
3
1, 2, 9, 12, 15, 16, 19, 20, 23, 24, 25, 28, 29, 30, 33, 34, 35, 36, 39, 40, 41, 42, 45, 46, 47, 48, 49, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 71, 72, 75, 76, 77, 78, 79, 80, 81, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 103, 104, 105, 106, 107, 108, 109, 110, 113, 114, 115
OFFSET
0,2
COMMENTS
Sequence gives the positions of records in A265410, equal to the points where its value increases by one.
LINKS
FORMULA
a(0) = 1; for n >= 1, a(n) = 1 + A265412(n-1).
Other identities. For all n >= 0:
A265410(a(n)) = n. [Particularly: a(n) gives the position where n occurs for the first time in A265410.]
PROG
(Scheme) (define (A265413 n) (if (zero? n) 1 (+ 1 (A265412 (- n 1)))))
CROSSREFS
Sequence in context: A080520 A032372 A207967 * A297830 A103008 A124742
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 09 2015
STATUS
approved