login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A115315 L = (1 + Sqrt[5])/(2*Sqrt[5]) Phi = (1 + Sqrt[5])/2 a(n) = Floor[L^3*{Phi^(3*n - 2), Phi^(3*n - 1), Phi^(3*n - 2) + Phi^(3*n - 1)}]. 0
0, 0, 1, 2, 4, 6, 11, 17, 28, 46, 75, 121, 197, 319, 516, 836, 1353, 2189, 3542, 5731, 9273, 15004, 24278, 39283, 63562, 102845, 166408, 269253, 435661, 704915, 1140577, 1845492, 2986070, 4831563, 7817633, 12649197, 20466831, 33116028 (list; graph; refs; listen; history; internal format)
OFFSET

0,4

COMMENTS

N[Table[a[[n + 1]]/a[[n]], {n, 3, Length[a] - 1}]]-->Phi So it is Fibonacci like, too. Here how it goes: Form the matrix: M={{f[n],f[n+2},{f[n+1],f[n+3]} f3[n_]out=Det[M]*{f[[n],f[n+1],f[n+2}} All I did was use the L function equivalents in each position to derive the new sequence.

MATHEMATICA

L = (1 + Sqrt[5])/(2*Sqrt[5]) Phi = (1 + Sqrt[5])/2 f[n_] = Floor[L^3*{Phi^(3*n - 2), Phi^(3*n - 1), Phi^(3*n - 2) + Phi^(3*n - 1)}] a = Flatten[Table[f[n], {n, 1, 25}]]

CROSSREFS

Cf. A000045.

Sequence in context: A056342 A094719 A018144 * A004698 A014217 A034297

Adjacent sequences:  A115312 A115313 A115314 * A115316 A115317 A115318

KEYWORD

nonn,uned

AUTHOR

Roger Bagula (rlbagulatftn(AT)yahoo.com), Mar 06 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 19:13 EST 2012. Contains 206085 sequences.