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!)
A308155 Number of (undirected) cycles in the n-Hanoi graph. 1
1, 11, 1761, 6560212131, 282779810128722710004851715561, 22612323802416302740572466532825193607455652273991093701620185148186749274755003474250171 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(7) has 266 decimal digits and a(8) has 796 decimal digits. - Andrew Howroyd, Sep 10 2019
Also the number of chordless cycles in the (n+1)-Hanoi graph. - Eric W. Weisstein, May 23 2023
LINKS
Eric Weisstein's World of Mathematics, Chordless Cycle
Eric Weisstein's World of Mathematics, Graph Cycle
Eric Weisstein's World of Mathematics, Hanoi Graph
FORMULA
a(n) = Sum_{k=1..n} 3^(n-k)*A125295(k-1)^3. - Andrew Howroyd, Sep 10 2019
MATHEMATICA
a[0] = 1; a[n_] := a[n] = a[n - 1]^2 (a[n - 1] + 1); Table[Sum[3^(n - k) a[k - 1]^3, {k, n}], {n, 6}] (* Eric W. Weisstein, May 23 2023 *)
PROG
(PARI) a(n)={my(s=1, d=1); for(i=2, n, d=d^2+d^3; s = 3*s + d^3); s} \\ Andrew Howroyd, Sep 10 2019
CROSSREFS
Sequence in context: A222841 A287035 A297004 * A222874 A028453 A024151
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 14 2019
EXTENSIONS
a(4)-a(6) from Andrew Howroyd, Sep 10 2019
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.)