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!)
A126940 "Model 2" for number of free alkanes on n points. 5

%I #9 Mar 07 2024 17:00:16

%S 1,1,3,11,35,109,347,1105,3507,11135,35371,112343,356797,1133207,

%T 3599143,11431063,36305649,115308721,366226729,1163155753,3694245273,

%U 11733121945,37265026883,118355731271,375904173873,1193891891823,3791864917001,12043167097497

%N "Model 2" for number of free alkanes on n points.

%C Linear recurrence and empirical g.f confirmed for more terms. - _Ray Chandler_, Mar 07 2024

%D Gy. Tasi et al., Quantum algebraic-combinatoric study of the conformational properties of n-alkanes II, J. Math. Chemistry, 27 (2000), 191-199 (see Table 1).

%H Ray Chandler, <a href="/A126940/b126940.txt">Table of n, a(n) for n = 0..1993</a>

%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (2, 1, 7, 4, 4, 1).

%F Define sequences a[n], b[n], c[n], d[n] by the recurrences shown in the Maple code below. Sequence gives values of a[n] and also (with a different offset) a[n]+b[n]+d[n].

%F Empirical g.f.: (x^5+x^4+3*x^3+x-1) / (x^6+4*x^5+4*x^4+7*x^3+x^2+2*x-1). - _Colin Barker_, Apr 08 2013

%p M:=35; a:=array(-5..M); b:=array(-5..M); c:=array(-5..M); d:=array(-5..M);

%p for i from -5 to 0 do a[i]:=0; b[i]:=0; c[i]:=0; d[i]:=0; od: a[0]:=1;

%p for n from 1 to M do

%p a[n]:=a[n-1]+b[n-1]+d[n-1];

%p b[n]:=2*a[n-1]+b[n-1]+b[n-3]+c[n-2]+c[n-4];

%p c[n]:=2*a[n-1]+b[n-1]+b[n-2]+b[n-3]+c[n-3]+c[n-4];

%p d[n]:=b[n-1]+b[n-2]+c[n-1]+c[n-2]+c[n-3]; od:

%Y For sequences b[n], c[n], d[n] and a[n]+b[n]+c[n]+d[n] see A126946, A126947, A126948, A126945 respectively.

%K nonn

%O 0,3

%A _N. J. A. Sloane_, Mar 18 2007

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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)