A304519 a(n) = 72*2^n -56 (n>=1).
88, 232, 520, 1096, 2248, 4552, 9160, 18376, 36808, 73672, 147400, 294856, 589768, 1179592, 2359240, 4718536, 9437128, 18874312, 37748680, 75497416, 150994888, 301989832, 603979720, 1207959496, 2415919048, 4831838152, 9663676360, 19327352776, 38654705608, 77309411272, 154618822600, 309237645256, 618475290568
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- E. Deutsch and Sandi Klavzar, M-polynomial and degree-based topological indices, Iranian J. Math. Chemistry, 6, No. 2, 2015, 93-102.
- A. Madanshekaf and M. Moradi, The first geometric-arithmetic index of some nanostar dendrimers, Iranian J. Math. Chemistry, 5, Supplement 1, 2014, s1-s6.
- Index entries for linear recurrences with constant coefficients, signature (3,-2).
Programs
-
GAP
List([1..40],n->72*2^n-56); # Muniru A Asiru, May 15 2018
-
Maple
seq(72*2^n-56, n = 1 .. 40);
-
PARI
Vec(8*x*(11 - 4*x) / ((1 - x)*(1 - 2*x)) + O(x^40)) \\ Colin Barker, May 15 2018
Formula
From Colin Barker, May 15 2018: (Start)
G.f.: 8*x*(11 - 4*x) / ((1 - x)*(1 - 2*x)).
a(n) = 3*a(n-1) - 2*a(n-2) for n>2.
(End)
Comments