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!)
A261788 a(n) = smallest k such that A261786(k) >= 3^n. 2
1, 2, 5, 12, 30, 81, 224, 626, 1747, 4909, 13811, 38934, 109889, 310666, 880125, 2500221, 7125406, 20376598, 58472481, 168349612, 486198698 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
PROG
(Haskell)
a261788 n = a261788_list !! (n-1)
a261788_list = f 1 1 a261786_list' where
f z k (x:xs) | x >= z = k : f (3 * z) (k + 1) xs
| otherwise = f z (k + 1) xs
(PARI) ts(n) = Str(fromdigits(digits(n, 3))); \\ A007089
f(n) = my(s=ts(n), k=1); while (#strsplit(s, ts(k)) != 1, k++); k; \\ A261787
lista(nn) = my(last=1, k=0, p=3^k); for (n=1, nn, if (last >= p, print1(n, ", "); k++; p = 3^k); last += f(last); ); \\ Michel Marcus, Feb 06 2022
CROSSREFS
Sequence in context: A179544 A182488 A363912 * A112412 A309506 A319557
KEYWORD
nonn,more
AUTHOR
Reinhard Zumkeller, Sep 01 2015
EXTENSIONS
a(11)-a(20) from Michel Marcus, Feb 06 2022
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)