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

A183868
a(n) = n + floor(2*sqrt(n+1)); complement of A079524.
1
3, 5, 7, 8, 9, 11, 12, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74
OFFSET
1,1
MAPLE
A183868 := proc(n) n+floor(2*sqrt(n+1)) ; end proc: # R. J. Mathar, Feb 06 2011
MATHEMATICA
Table[n+Floor[2*Sqrt[n+1]], {n, 60}] (* Harvey P. Dale, Nov 05 2013 *)
CROSSREFS
Cf. A079524.
Sequence in context: A134407 A218979 A325417 * A346232 A299542 A144724
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 07 2011
STATUS
approved