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!)
A368456 Number of independent vertex sets in the n-Dorogovtsev-Goltsev-Mendes graph. 2
3, 4, 14, 1120, 1129856000, 1429646991180169216000000000, 2922003679260403682236915960536301659966658013592289280000000000000000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Using the indexing convention that DGM(0) = P_2.
LINKS
Eric Weisstein's World of Mathematics, Dorogovtsev-Goltsev-Mendes Graph.
Eric Weisstein's World of Mathematics, Independent Vertex Set.
FORMULA
a(n) = b(n) + 2*c(n) where b(0) = c(0) = 1 and c(n) = b(n-1)*c(n-1)^2, b(n) = c(n) + b(n-1)^3 for n > 0. - Andrew Howroyd, Dec 30 2023
PROG
(PARI) a(n) = {my(b=1, c=1); for(k=1, n, c = b*c^2; b = b^3 + c); b + 2*c} \\ Andrew Howroyd, Dec 30 2023
CROSSREFS
Sequence in context: A356463 A248152 A173735 * A286705 A286081 A286769
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Dec 25 2023
EXTENSIONS
a(0) prepended and terms a(5) and beyond from Andrew Howroyd, Dec 30 2023
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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)