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!)
A173674 a(n) = ceiling(A003269(n)/2). 0

%I #26 Jul 01 2019 03:24:11

%S 0,1,1,1,1,1,2,2,3,4,5,7,10,13,18,25,35,48,66,91,125,173,238,329,454,

%T 626,864,1193,1646,2272,3136,4329,5975,8247,11383,15711,21686,29932,

%U 41315,57026,78711,108643,149958,206983,285694,394337,544295,751278,1036972

%N a(n) = ceiling(A003269(n)/2).

%H <a href="/index/Rec#order_19">Index entries for linear recurrences with constant coefficients</a>, signature (1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, -1).

%F a(n) = A003269(n) - floor(A003269(n)/2):

%F a(n) = ceiling(A003269(n)/2).

%F a(n)= a(n-1) + a(n-4) + a(n-15) - a(n-16) - a(n-19). - _R. J. Mathar_, Sep 10 2016

%t b[0] = 0; b[1] = 1; b[2] = 1; b[3] = 1;

%t b[n_] := b[n] = b[n - 1] + b[n - 4]

%t Table[b[n] - Floor[b[n]/2], {n, 0, 30}]

%Y Cf. A003269.

%K nonn,easy

%O 0,7

%A _Roger L. Bagula_, Nov 25 2010

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 May 9 15:13 EDT 2024. Contains 372352 sequences. (Running on oeis4.)