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

A184743
a(n) = floor(n*s + h - h*s), where s = sqrt(Pi)/(sqrt(Pi)-1), h = -1/2; complement of A184742.
2
2, 5, 7, 9, 12, 14, 16, 19, 21, 23, 25, 28, 30, 32, 35, 37, 39, 41, 44, 46, 48, 51, 53, 55, 58, 60, 62, 64, 67, 69, 71, 74, 76, 78, 80, 83, 85, 87, 90, 92, 94, 97, 99, 101, 103, 106, 108, 110, 113, 115, 117, 119, 122, 124, 126, 129, 131, 133, 136, 138, 140, 142, 145, 147, 149, 152, 154, 156, 158, 161, 163, 165, 168, 170, 172, 175, 177, 179
OFFSET
1,1
LINKS
FORMULA
a(n) = floor(n*s + h - h*s), where s = sqrt(Pi)/(sqrt(Pi)-1), h = -1/2.
MATHEMATICA
r=Pi^(1/2); h=-1/2; s=r/(r-1);
Table[Floor[n*r+h], {n, 1, 120}] (* A184242 *)
Table[Floor[n*s+h-h*s], {n, 1, 120}] (* A184243 *)
PROG
(PARI) for(n=1, 25, print1(floor((n+1/2)*(sqrt(Pi)/(sqrt(Pi) - 1)) - 1/2), ", ")) \\ G. C. Greubel, Jan 09 2017
CROSSREFS
Cf. A184742.
Sequence in context: A024671 A246706 A304498 * A184749 A047386 A187416
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 20 2011
STATUS
approved