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”).

A192845
Molecular topological indices of the sun graphs.
1
4, 56, 180, 400, 740, 1224, 1876, 2720, 3780, 5080, 6644, 8496, 10660, 13160, 16020, 19264, 22916, 27000, 31540, 36560, 42084, 48136, 54740, 61920, 69700, 78104, 87156, 96880, 107300, 118440
OFFSET
1,1
COMMENTS
Sun graphs are defined for n >= 3; extended to n=1 using closed form.
LINKS
Eric Weisstein's World of Mathematics, Molecular Topological Index
FORMULA
a(n) = 4*n*(-3 + 3*n + n^2).
a(n) = 4*A090197(n).
G.f.: 4*x*(1 + 10*x - 5*x^2)/(1-x)^4. - Colin Barker, Aug 07 2012
E.g.f.: 4*x*(1 + 6*x + x^2)*exp(x). - G. C. Greubel, Jan 05 2019
MATHEMATICA
Table[4*n*(-3+3*n+n^2), {n, 1, 40}] (* G. C. Greubel, Jan 05 2019 *)
LinearRecurrence[{4, -6, 4, -1}, {4, 56, 180, 400}, 30] (* Harvey P. Dale, Mar 02 2024 *)
PROG
(PARI) vector(40, n, 4*n*(-3+3*n+n^2)) \\ G. C. Greubel, Jan 05 2019
(Magma) [4*n*(-3+3*n+n^2): n in [1..40]]; // G. C. Greubel, Jan 05 2019
(Sage) [4*n*(-3+3*n+n^2) for n in (1..40)] # G. C. Greubel, Jan 05 2019
(GAP) List([1..40], n -> 4*n*(-3+3*n+n^2)); # G. C. Greubel, Jan 05 2019
CROSSREFS
Cf. A090197.
Sequence in context: A168133 A189864 A360262 * A144138 A331776 A006592
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Jul 11 2011
STATUS
approved