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

A263277
First differences of A263276; length of n-th run of terms of same parity in A259934.
4
21, 3, 8480, 1356, 18162, 149, 78495, 291, 1194707, 8567, 1426107, 4090, 6029619, 59748, 325034101, 95590
OFFSET
1,1
FORMULA
a(n) = A263276(n) - A263276(n-1).
PROG
(Scheme) (define (A263277 n) (if (zero? n) n (- (A263276 n) (A263276 (- n 1)))))
CROSSREFS
Bisections: A263278, A262516.
Sequence in context: A018855 A349873 A372282 * A040428 A040429 A082128
KEYWORD
nonn,more
AUTHOR
Antti Karttunen, Nov 08 2015
STATUS
approved