login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A292209
Number of cliques in the n-Menger sponge graph.
0
45, 1073, 22977, 471809, 9534465, 191475713, 3835805697, 76766445569, 1535731564545, 30717852516353, 614382820130817, 12287862561046529, 245758900488372225, 4915191203906977793, 98303929631255822337, 1966079437050046578689
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Clique
Eric Weisstein's World of Mathematics, Menger Sponge Graph
FORMULA
a(n) = 3*20^n - 2*8^n + 1.
a(n) = 29*a(n-1) - 188*a(n-2) + 160*a(n-3).
G.f.: x*(-45 + 232*x - 320*x^2)/(-1 + 29*x - 188*x^2 + 160*x^3).
MATHEMATICA
Table[3 20^n - 2 8^n + 1, {n, 20}]
LinearRecurrence[{29, -188, 160}, {45, 1073, 22977}, 20]
CoefficientList[Series[(-45 + 232 x - 320 x^2)/(-1 + 29 x - 188 x^2 + 160 x^3), {x, 0, 20}], x]
CROSSREFS
Sequence in context: A162418 A010997 A163721 * A317895 A282929 A177728
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Sep 11 2017
STATUS
approved