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!)
A370377 a(n) is the number of symmetrical linear hydrocarbon chains with n C-C bonds. 1
1, 3, 2, 6, 5, 14, 11, 31, 25, 70, 56, 157, 126, 353, 283, 793, 636, 1782, 1429, 4004, 3211, 8997, 7215, 20216, 16212, 45425, 36428, 102069, 81853, 229347, 183922, 515338, 413269, 1157954, 928607, 2601899, 2086561, 5846414, 4688460, 13136773, 10534874 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*A306334(n) - A006356(n).
Also:
a(0) = 1;
a(2) = 2;
a(n) = A006356((n+1)/2) if n is odd;
a(n) = A006356(n/2) - A006356((n-4)/2) if n is even.
G.f.: (1+3*x-x^5)/(1-2*x^2-x^4+x^6). - Joerg Arndt, Feb 18 2024
EXAMPLE
For n = 1: a(1) = A006356(1) = 3
CH3-CH3, CH2=CH2, CH≡CH
For n = 3: a(3) = A006356(2) = 6
CH3-CH2-CH2-CH3, CH3-CH=CH-CH3, CH3-C≡C-CH3, CH2=CH-CH=CH2, CH≡C-C≡CH, CH2=C=C=CH2
For n = 4: a(4) = A006356(2) - A006356(0) = 6 - 1 = 5
CH3-CH2-CH2-CH2-CH3, CH3-CH=C=CH-CH3, CH2=CH-CH2-CH=CH2, CH≡C-CH2-C≡CH, CH2=C=C=C=CH2
MATHEMATICA
LinearRecurrence[{0, 2, 0, 1, 0, -1}, {1, 3, 2, 6, 5, 14}, 50] (* Paolo Xausa, Feb 22 2024 *)
PROG
(Python)
a = [1, 3, 2, 6, 5, 14]
for i in range(30):
a.append(2*a[-2]+a[-4]-a[-6])
print(a)
(PARI) Vec(O(x^55)+(1+3*x-x^5)/(1-2*x^2-x^4+x^6)) \\ Joerg Arndt, Feb 18 2024
CROSSREFS
Sequence in context: A338524 A371906 A293549 * A306443 A336518 A189073
KEYWORD
easy,nonn
AUTHOR
Tomasz Dziekanski, Feb 18 2024
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 June 7 22:01 EDT 2024. Contains 373206 sequences. (Running on oeis4.)