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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123908 Number of sequences with terms 1, 2 or 3 summing to n with no three consecutive 1's. 0

%I

%S 1,1,2,3,6,10,17,30,52,90,156,271,470,815,1414,2453,4255,7381,12804,

%T 22211,38529,66836,115940,201120,348881,605201,1049837,1821143,

%U 3159121,5480100,9506282,16490465,28605867,49622350,86079461,149321296

%N Number of sequences with terms 1, 2 or 3 summing to n with no three consecutive 1's.

%F a(n) = a(n - 2) + 2a(n - 3) + 2a(n - 4) + a(n - 5)

%e a(4) = 6 as 3 + 1, 1 + 3, 2 + 2, 1 + 1 + 2, 1 + 2 + 1 and 2 + 1 + 1 (but not 1 + 1 + 1 + 1).

%p a[0]=a[1]=1 a[2]=2 a[3]=3 a[4]=6 a[n_] := a[n - 2] + 2a[n - 3] + 2a[n - 4] + a[n - 5]

%K easy,nonn

%O 0,3

%A Joel Lewis (jblewis(AT)fas.harvard.edu), Oct 28 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 May 23 19:22 EDT 2013. Contains 225611 sequences.