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!)
A304517 a(n) = 16*2^n - 11 (n>=1). 3
21, 53, 117, 245, 501, 1013, 2037, 4085, 8181, 16373, 32757, 65525, 131061, 262133, 524277, 1048565, 2097141, 4194293, 8388597, 16777205, 33554421, 67108853, 134217717, 268435445, 536870901, 1073741813, 2147483637, 4294967285, 8589934581, 17179869173, 34359738357, 68719476725, 137438953461, 274877906933, 549755813877 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is the number of edges of the nanostar dendrimer NS2[n] from the Madanshekaf et al. reference.
LINKS
A. Madanshekaf and M. Moradi, The first geometric-arithmetic index of some nanostar dendrimers, Iranian J. Math. Chemistry, 5, Supplement 1, 2014, s1-s6.
FORMULA
From Colin Barker, May 15 2018: (Start)
G.f.: x*(21 - 10*x) / ((1 - x)*(1 - 2*x)).
a(n) = 3*a(n-1) - 2*a(n-2) for n>2.
(End)
MAPLE
seq(16*2^n-11, n = 1 .. 40);
MATHEMATICA
Rest@ CoefficientList[Series[x (21 - 10 x)/((1 - x) (1 - 2 x)), {x, 0, 35}], x] (* or *)
LinearRecurrence[{3, -2}, {21, 53}, 35] (* or *)
Array[16*2^# - 11 &, 35] (* Michael De Vlieger, May 15 2018 *)
PROG
(GAP) List([1..40], n->16*2^n-11); # Muniru A Asiru, May 15 2018
(PARI) Vec(x*(21 - 10*x) / ((1 - x)*(1 - 2*x)) + O(x^40)) \\ Colin Barker, May 15 2018
CROSSREFS
First bisection of A164096 without 5. First column of the table in A224701.
Sequence in context: A043913 A280914 A347837 * A007796 A211460 A354160
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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)