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!)
A089848 Number of fixed points in range [A014137(n-1)..A014138(n-1)] of permutation A089851/A089853. 6
1, 1, 2, 2, 5, 15, 42, 132, 431, 1430, 4862, 16801, 58786, 208012, 742914, 2674440, 9694845, 35357712, 129644790, 477638700, 1767263322, 6564120420, 24466267020, 91482564069, 343059613650, 1289904147324, 4861946402882, 18367353072152 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The number of n-node binary trees fixed by the corresponding automorphism(s).
LINKS
FORMULA
a(0)=1, a(n) = A000108(n-1) if (n mod 3)=0 or 1 and a(n) = A000108(n-1)+A000108((n-2)/3) if (n mod 3)=2.
MAPLE
A089848 := n -> A000108(n-1)+`if`((2 = (n mod 3)), A000108((n-2)/3), 0);
PROG
(Scheme) (define (A089848 n) (cond ((zero? n) 1) (else (+ (A000108 (- n 1)) (if (= 2 (modulo n 3)) (A000108 (/ (- n 2) 3)) 0)))))
CROSSREFS
Sequence in context: A198528 A208466 A098888 * A033550 A032130 A259101
KEYWORD
nonn,easy
AUTHOR
Antti Karttunen, Nov 29 2003
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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)