OFFSET
1,2
COMMENTS
The n-sunlet graph is properly defined for n >= 3. For n = 1 and 2 a loop or double edge with pendent vertices is used.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..200
Eric Weisstein's World of Mathematics, Assembly Number.
Eric Weisstein's World of Mathematics, Sunlet Graph.
FORMULA
a(n) = n*A062980(n-1)/2 for n > 1.
PROG
(PARI) seq(n) = { my(v=vector(n)); v[1] = 2; v[2] = 5; for(n=3, n, v[n] = 6*(n-1)*v[n-1] + sum(k=2, n-2, v[k]*v[n-k])); vector(#v, n, v[n]*n)/2 }
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Andrew Howroyd, Jul 08 2026
STATUS
approved
