The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A255055 Greatest inverse of A255072; a(n) = largest k such that A255072(k) = n. 6
0, 2, 5, 6, 10, 13, 14, 18, 22, 26, 29, 30, 34, 38, 43, 46, 50, 54, 58, 61, 62, 66, 70, 75, 78, 85, 90, 94, 98, 102, 107, 110, 114, 118, 122, 125, 126, 130, 134, 139, 142, 149, 154, 158, 165, 171, 175, 181, 186, 190, 194, 198, 203, 206, 213, 218, 222, 226, 230, 235, 238, 242, 246, 250, 253, 254, 258 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 0; for n > 0, a(n) = A255054(n) + a(n-1).
Other identities. For all n >= 0:
a(n) = A255053(n) + A255054(n) - 1.
a(n) = A255056(n) + A255124(n).
PROG
(Scheme, with Antti Karttunen's IntSeq-library, three different implementations):
(definec (A255055 n) (if (zero? n) n (+ (A255054 n) (A255055 (- n 1)))))
(define A255055 (COMPOSE -1+ (LEAST-I-WITH-FUN-I-EQ-N 0 0 A255072) 1+)) ;; Slow !
(define (A255055 n) (+ (A255053 n) (A255054 n) -1))
CROSSREFS
Analogous sequences: A173601, A219645, A219655.
Sequence in context: A255341 A089269 A047440 * A344314 A369020 A358817
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 14 2015
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 June 2 08:32 EDT 2024. Contains 373033 sequences. (Running on oeis4.)