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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A127839 a(1)=1,a(2)=...=a(5)=0,a(n)=a(n-5)+a(n-4) for n>5. 0
1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 2, 1, 0, 1, 3, 3, 1, 1, 4, 6, 4, 2, 5, 10, 10, 6, 7, 15, 20, 16, 13, 22, 35, 36, 29, 35, 57, 71, 65, 64, 92, 128, 136, 129, 156, 220, 264, 265, 285, 376, 484, 529, 550, 661, 860, 1013, 1079, 1211 (list; graph; refs; listen; history; internal format)
OFFSET

1,15

COMMENTS

Part of the phi_k family of sequences defined by a(1)=1,a(2)=...=a(k)=0, a(n)=a(n-k)+a(n-k+1) for n>k. phi_2 is a shift of the Fibonacci sequence and phi_3 is a shift of the Padovan sequence.

REFERENCES

S. Suter, Binet-like formulas for recurrent sequences with characteristic equation x^k=x+1, preprint, 2007

FORMULA

Binet-like formula: a(n)=sum_{i=1...5} (r_i^n)/(4(r_i)^2+5(r_i)) where r_i is a root of x^5=x+1

MAPLE

P:=proc(n) local a, a0, a1, a2, a3, a4, a5, i; a0:=1; a1:=0; a2:=0; a3:=0; a4:=0; print(a0); print(a1); print(a2); print(a3); print(a4); for i from 1 by 1 to n do a:=a0+a1; a0:=a1; a1:=a2; a2:=a3; a3:=a4; a4:=a; print(a); od; end: P(100); - Paolo P. Lava (paoloplava(AT)gmail.com), Jun 28 2007

CROSSREFS

Sequence in context: A071919 A097805 A167763 * A017827 A094266 A071569

Adjacent sequences:  A127836 A127837 A127838 * A127840 A127841 A127842

KEYWORD

nonn

AUTHOR

Stephen Suter (sms5064(AT)psu.edu), Apr 02 2007

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 20:50 EST 2012. Contains 206085 sequences.