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!)
A117614 a(0)=1, a(n)=4a(n-1)+2 for n odd, a(n)=4a(n-1) for n even. 1
1, 6, 24, 98, 392, 1570, 6280, 25122, 100488, 401954, 1607816, 6431266, 25725064, 102900258, 411601032, 1646404130, 6585616520, 26342466082, 105369864328, 421479457314, 1685917829256, 6743671317026, 26974685268104 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
L. Rosenfeld, Nuclear Forces, section II, Interscience, New York, 1948, p 202.
LINKS
FORMULA
a(n) = (-5-3*(-1)^n+23*4^n)/15. a(n) = 4*a(n-1)+a(n-2)-4*a(n-3). G.f.: -(x^2-2*x-1) / ((x-1)*(x+1)*(4*x-1)). [Colin Barker, Feb 17 2013]
MAPLE
a:=proc(n) if n=0 then 1 elif n mod 2 = 1 then 4*a(n-1)+2 else 4*a(n-1) fi end: seq(a(n), n=0..25);
MATHEMATICA
b[0] := 1 b[1] := 6 b[n_?EvenQ] := b[n] = 4*b[n - 1] b[n_?OddQ] := b[n] = 4*b[n - 1] + 2 a = Table[b[n], {n, 0, 25}]
nxt[{n_, a_}]:={n+1, If[EvenQ[n], 4a+2, 4a]}; NestList[nxt, {0, 1}, 30][[All, 2]] (* or *) LinearRecurrence[{4, 1, -4}, {1, 6, 24}, 30] (* Harvey P. Dale, Nov 15 2020 *)
CROSSREFS
Sequence in context: A290911 A037505 A048179 * A037688 A343116 A360036
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Apr 07 2006
EXTENSIONS
Edited by N. J. A. Sloane, Apr 16 2006
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)