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”).

A223578
Positive integers n for which f(-n-1) < f(-n) < f(-n+1), where f(m) = floor(cot(Pi/(2m))).
1
2, 3, 4, 7, 12, 15, 18, 23, 26, 29, 34, 37, 40, 45, 48, 51, 54, 59, 62, 65, 70, 73, 76, 81, 84, 87, 92, 95, 98, 103, 106, 109, 114, 117, 120, 125, 128, 131, 136, 139, 142, 147, 150, 153, 158, 161, 164, 169, 172, 175, 180, 183, 186, 191, 194, 197
OFFSET
1,1
COMMENTS
Conjecture: A223568(k) = 2*A223577(k)-k+1, k=1,2,....
FORMULA
Conjecture: a(n) = a(n-1)+a(n-3)-a(n-4) for n>6. G.f.: x*(2*x^17-2*x^16+2*x^5+4*x^4+x^3+x^2+x+2) / ((x-1)^2*(x^2+x+1)). - Colin Barker, Jan 03 2014
MATHEMATICA
f[n_] := Floor[Cot[Pi/(2 n)]]; Select[Range[2, 200], f[-# - 1] < f[-#] < f[-# + 1] &] (* T. D. Noe, Mar 22 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
L. Edson Jeffery, Mar 22 2013
STATUS
approved