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!)
A224520 Numbers a(n) with property a(n) + a(n+4) = 2^(n+4) - 1 = A000225(n+4). 2
0, 1, 3, 7, 15, 30, 60, 120, 240, 481, 963, 1927, 3855, 7710, 15420, 30840, 61680, 123361, 246723, 493447, 986895, 1973790, 3947580, 7895160, 15790320, 31580641, 63161283, 126322567, 252645135, 505290270, 1010580540 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This is the case k=4 of a(n) + a(n+k) = 2^(n+k) - 1 = A000225(n+k). The sequences A000975, A077854 and A153234 correspond to cases k=1,2 and 3, respectively.
LINKS
FORMULA
a(n) + a(n+4) = 2^(n+4) - 1.
From Joerg Arndt, Apr 09 2013: (Start)
G.f.: x/((1-x)*(1-2*x)*(1+x^4)).
a(n) = +3*a(n-1) -2*a(n-2) -1*a(n-4) +3*a(n-5) -2*a(n-6). (End)
a(n) = floor(2^(n+4)/17). - Karl V. Keller, Jr., Jun 30 2021
MATHEMATICA
CoefficientList[Series[x/((1 - x)*(1 - 2*x)*(1 + x^4)), {x, 0, 50}], x] (* G. C. Greubel, Oct 11 2017 *)
LinearRecurrence[{3, -2, 0, -1, 3, -2}, {0, 1, 3, 7, 15, 30}, 40] (* Harvey P. Dale, Aug 23 2021 *)
PROG
(PARI) x='x+O('x^50); concat([0], Vec(x/((1-x)*(1-2*x)*(1+x^4)))) \\ G. C. Greubel, Oct 11 2017
(Python) print([2**(n+4)//17 for n in range(31)]) # Karl V. Keller, Jr., Jun 30 2021
CROSSREFS
Sequence in context: A062544 A120411 A350606 * A291754 A336685 A069112
KEYWORD
nonn,easy
AUTHOR
Arie Bos, Apr 09 2013
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 13 02:15 EDT 2024. Contains 372497 sequences. (Running on oeis4.)