The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A304606 a(n) = 54*2^n + 28 (n >= 1). 4
136, 244, 460, 892, 1756, 3484, 6940, 13852, 27676, 55324, 110620, 221212, 442396, 884764, 1769500, 3538972, 7077916, 14155804, 28311580, 56623132, 113246236, 226492444, 452984860, 905969692, 1811939356, 3623878684, 7247757340, 14495514652, 28991029276, 57982058524 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is the number of edges of the nanostar dendrimer G[n] from the Ashrafi et al. reference.
LINKS
A. R. Ashrafi, A. Karbasioun, and M. V. Diudea, Computing Wiener and detour indices of a new type of nanostar dendrimers, MATCH Commun. Math. Comput. Chem. 65, 2011, 193-200.
FORMULA
From Michael De Vlieger, May 16 2018: (Start)
G.f.: 4*x*(34 - 41*x)/(1 - 3*x + 2*x^2).
a(n) = 3*a(n - 1) - 2*a(n - 2) for n > 2. (End)
MAPLE
seq(54*2^n+28, n = 1 .. 40);
MATHEMATICA
CoefficientList[Series[4 (34 - 41 x)/(1 - 3 x + 2 x^2), {x, 0, 33}], x] (* or *)
LinearRecurrence[{3, -2}, {136, 244}, 34] (* or *)
Array[54*2^# + 28 &, 34] (* Michael De Vlieger, May 16 2018 *)
PROG
(PARI) a(n) = 54*2^n + 28; \\ Altug Alkan, May 15 2018
(PARI) Vec(4*x*(34 - 41*x)/(1 - 3*x + 2*x^2) + O(x^40)) \\ Colin Barker, May 23 2018
(GAP) List([1..40], n->54*2^n+28); # Muniru A Asiru, May 16 2018
CROSSREFS
Sequence in context: A256925 A235285 A282794 * A264951 A264958 A262615
KEYWORD
nonn,easy
AUTHOR
Emeric Deutsch, May 15 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 18 06:23 EDT 2024. Contains 372618 sequences. (Running on oeis4.)