login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

floor(n*(e-1)-1/2); complement of A184741.
2

%I #4 Mar 30 2012 18:57:17

%S 1,2,4,6,8,9,11,13,14,16,18,20,21,23,25,26,28,30,32,33,35,37,39,40,42,

%T 44,45,47,49,51,52,54,56,57,59,61,63,64,66,68,69,71,73,75,76,78,80,81,

%U 83,85,87,88,90,92,94,95,97,99,100,102,104,106,107,109,111,112,114,116,118,119,121,123,124,126,128,130,131,133,135,136,138,140,142,143,145,147,148,150,152,154,155,157,159,161,162,164,166,167,169,171,173,174,176,178,179,181,183,185,186,188,190,191,193,195,197,198,200,202,203,205

%N floor(n*(e-1)-1/2); complement of A184741.

%F a(n)=floor(n*e-1/2); complement of A184741.

%t r=E-1; h=-1/2; s=r/(r-1);

%t Table[Floor[n*r+h],{n,1,120}] (* A184740*)

%t Table[Floor[n*s+h-h*s],{n,1,120}] (*A184741 *)

%Y Cf. A184741.

%K nonn

%O 1,2

%A _Clark Kimberling_, Jan 20 2011