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!)
A291287 a(0)=a(1)=1, a(2)=3, thereafter a(n) = n*a(n-1)+(n-1)*(n-2)*a(n-2). 2
1, 1, 3, 11, 62, 442, 3892, 40504, 487496, 6655688, 101656592, 1717234432, 31789038304, 639932442976, 13918144177088, 325239867277952, 8126648153635712, 216210586758515584, 6102238859442194176, 182102977877507458048, 5729025247479379569152 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Tomislav Doslic and R. Sharafdini, Hosoya Index of Splices, Bridges, and Necklaces, in Distance, Symmetry, and Topology in Carbon Nanomaterials, 2016, pp 147-156. Part of the Carbon Materials: Chemistry and Physics book series (CMCP, volume 9), doi:10.1007/978-3-319-31584-3_10. See the end of Section 2 (page 9).
MAPLE
f:=proc(n) option remember;
if n <= 1 then 1 elif n=2 then 3 else
n*f(n-1)+(n-1)*(n-2)*f(n-2); fi; end;
[seq(f(n), n=0..20)];
MATHEMATICA
nxt[{n_, a_, b_}]:={n+1, b, b(n+1)+n(n-1)a}; Join[{1}, NestList[nxt, {2, 1, 3}, 20][[;; , 2]]] (* Harvey P. Dale, Jan 20 2024 *)
CROSSREFS
Sequence in context: A203768 A356268 A069725 * A193499 A261919 A232617
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 27 2017
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 August 21 12:17 EDT 2024. Contains 375353 sequences. (Running on oeis4.)