cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A298105 Number of connected dominating sets in the n-Apollonian network.

Original entry on oeis.org

15, 96, 30208, 1562294353920, 458842788759956138092569943104028672
Offset: 1

Views

Author

Eric W. Weisstein, Jan 12 2018

Keywords

Comments

Term a(6) has 107 decimal digits and a(7) has 320 decimal digits. - Andrew Howroyd, Jan 16 2018

Crossrefs

Programs

  • 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 *)
  • 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]}

Extensions

Terms a(4) and beyond from Andrew Howroyd, Jan 16 2018