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!)
A135361 a(n) = a(n-1)^3 + 1 with a(0) = 0. 1
0, 1, 2, 9, 730, 389017001, 58871587162270593034051002, 204040901322752673844230437877671861543858084850895762746141813554591014612009 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of ternary trees of height less than n.
The rightmost digits cycle (0, 1, 2, 9, 0, 1, 2, 9, ...).
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..9
Robin Lamarche-Perrin, An Information-theoretic Framework for the Lossy Compression of Link Streams, arXiv:1807.06874 [cs.DS], 2018.
FORMULA
a(n) is asymptotic to c^(3^n) where c=1.0847999710783722816939038440390528005339362697...
MATHEMATICA
Nest[Append[#, #[[-1]]^3 + 1] &, {0}, 7] (* Michael De Vlieger, Oct 24 2018 *)
PROG
(Sage)
def a(n): return 0 if (n==0) else a(n-1)^3 + 1
[a(n) for n in (0..9)] # G. C. Greubel, Jul 19 2021
CROSSREFS
Sequence in context: A249903 A008322 A178391 * A023366 A000284 A208219
KEYWORD
easy,nonn
AUTHOR
Gerald McGarvey, Dec 08 2007
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)