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!)
A143056 a(n) = Re(b(n)) where b(n)=(1+i)*b(n-1)+b(n-2), with b(1)=0, b(2)=1. 3
0, 1, 1, 1, 0, -3, -9, -19, -32, -43, -39, 5, 128, 377, 783, 1305, 1728, 1513, -367, -5495, -15744, -32267, -53177, -69371, -58464, 21693, 235305, 656909, 1328896, 2165489, 2781855, 2249009, -1161856, -10052911, -27385695, -54696687, -88125696, -111427091, -86075113, 58797853, 428575584, 1140728485, 2249936377 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
The imaginary parts Im(b(n)) are given in A272665.
LINKS
FORMULA
From R. J. Mathar, Oct 24 2008: (Start)
G.f.: x*(1-x-x^2)/(1-2*x+2*x^3+x^4).
a(n) = 2*a(n-1) -2*a(n-3) -a(n-4). (End)
a(n) = (sin((n-1)*theta)*(tau^(n-1) + (-tau)^(1-n))/phi^(3/2) + cos((n-1)*theta)*(tau^(n-1) - (-tau)^(1-n))*phi^(3/2))/(2*sqrt(5)), where phi=(1+sqrt(5))/2, tau=sqrt(phi+sqrt(phi)), theta=arctan(phi^(-3/2)). - Vladimir Reshetnikov, Oct 05 2016
EXAMPLE
The b(n) sequence (n>=1) is: 0, 1, 1+i, 1+2i, 4i, ...
MAPLE
f:= Re @ gfun:-rectoproc({a(1)=0, a(2)=1, a(n) = (1+I)*a(n-1)+a(n-2)}, a(n), remember):
seq(f(n), n=1..100); # Robert Israel, Apr 25 2016
MATHEMATICA
a[1] = 0; a[2] = 1; a[n_] := a[n] = (1+I)*a[n - 1] + a[n - 2]; Table[Re[a[n]], {n, 1, 30}]
Re[Fibonacci[Range[0, 20], 1 + I]] (* Vladimir Reshetnikov, Apr 25 2016 *)
PROG
(PARI) x='x+O('x^50); Vec(x*(1-x-x^2)/(1-2*x+2*x^3+x^4)) \\ G. C. Greubel, Aug 08 2017
CROSSREFS
Cf. A272665 (the imaginary parts).
Sequence in context: A014869 A018495 A350978 * A294401 A194139 A194115
KEYWORD
sign,easy
AUTHOR
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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)