login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A219650 The nonnegative integers n such that there exists a number k with A034968(n+k)=k. 13
0, 1, 2, 5, 6, 7, 10, 11, 12, 15, 16, 17, 23, 24, 25, 28, 29, 30, 33, 34, 35, 38, 39, 40, 46, 47, 48, 51, 52, 53, 56, 57, 58, 61, 62, 63, 69, 70, 71, 74, 75, 76, 79, 80, 81, 84, 85, 86, 92, 93, 94, 97, 98, 99, 102, 103, 104, 107, 108, 109, 119, 120, 121, 124 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 0; and for n>0, a(n) = a(n-1) + A230405(n-1).
a(n) = A219651(2*n).
a(n) ~ 2*n. - Amiram Eldar, Jan 21 2024
PROG
(Scheme, with memoizing definec-macro from Antti Karttunen's IntSeq-library):
(definec (A219650 n) (if (zero? n) n (+ (A219650 (- n 1)) (A230405 (- n 1)))))
(define (A219650 n) (A219651 (* 2 n))) ;; Alternative definition.
CROSSREFS
Inverse: A230414. (In a sense that A230414(a(n)) = n for all n).
First differences: A230405. Bisection of A219651. Complement: A219658. Characteristic function: A230412. Cf. also A230423 and A230424.
Analogous sequence for binary system: A005187, for Zeckendorf expansion: A219640.
Sequence in context: A049303 A177987 A047217 * A039015 A037453 A014528
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 25 2012
EXTENSIONS
Name changed by Antti Karttunen, Nov 01 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 1 04:03 EDT 2024. Contains 375575 sequences. (Running on oeis4.)