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!)
A298202 Number of Eulerian cycles in the n-Sierpinski sieve graph. 1
1, 16, 102400, 40823664148480000, 4024143600922674552523331296813921054228480000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(6) has 157 decimal digits. - Andrew Howroyd, Sep 10 2019
LINKS
Eric Weisstein's World of Mathematics, Eulerian Cycle
Eric Weisstein's World of Mathematics, Sierpinski Sieve Graph
MATHEMATICA
NestList[Function[{e, f, g}, {16 e^3 + 48 f e^2, 3 e^3 + (32 f + 8 g) e^2 + 56 f^2 e, e^3 + (30 f + 12 g) e^2 + (156 f^2 + 96 g f) e + 112 f^3}] @@ # &, {1, 0, 0}, 5][[All, 1]] (* Eric W. Weisstein, Feb 02 2024 based on code from Andrew Howroyd *)
PROG
(PARI)
P(u)={my([e, f, g]=u); [16*e^3 + 48*f*e^2, 3*e^3 + (32*f + 8*g)*e^2 + 56*f^2*e, e^3 + (30*f + 12*g)*e^2 + (156*f^2 + 96*g*f)*e + 112*f^3]}
a(n)={my(u=[1, 0, 0]); for(n=2, n, u=P(u)); u[1]} \\ Andrew Howroyd, Sep 12 2019
CROSSREFS
Cf. A246959.
Sequence in context: A308507 A144830 A278289 * A364777 A332090 A333863
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jan 14 2018
EXTENSIONS
a(4)-a(5) 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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)