The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A298105 Number of connected dominating sets in the n-Apollonian network. 3
15, 96, 30208, 1562294353920, 458842788759956138092569943104028672 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Term a(6) has 107 decimal digits and a(7) has 320 decimal digits. - Andrew Howroyd, Jan 16 2018
LINKS
Eric Weisstein's World of Mathematics, Apollonian Network
Eric Weisstein's World of Mathematics, Connected Dominating Set
MATHEMATICA
{1, 3, 3, 1} . # & /@ NestList[Function[{t0, t1, t2, t3}, {t1^3, t1 t2^2, t1^2 t2 + t2^2 t3, t2^3 + t3^3}] @@ # &, {1, 2, 2, 2}, 4] (* Eric W. Weisstein, Jan 17 2018 *)
PROG
(PARI) \\ here t0..t3 are for 0..3 outside vertices included in set.
D(t0, t1, t2, t3)={[t1^3, t1*t2^2, t1^2*t2 + t2^2*t3, t2^3 + t3^3]}
a(n)={my(v=[1, 2, 2, 2]); for(i=2, n, v=D(v[1], v[2], v[3], v[4])); v[1]+3*v[2]+3*v[3]+v[4]}
CROSSREFS
Sequence in context: A044647 A289705 A296538 * A283168 A232296 A278203
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jan 12 2018
EXTENSIONS
Terms a(4) and beyond from Andrew Howroyd, Jan 16 2018
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 June 7 09:52 EDT 2024. Contains 373162 sequences. (Running on oeis4.)