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

A033371
a(n) = floor(51/n).
1
51, 25, 17, 12, 10, 8, 7, 6, 5, 5, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
OFFSET
1,1
MAPLE
A033371:=n->floor(51/n): seq(A033371(n), n=1..200); # Wesley Ivan Hurt, Apr 08 2017
MATHEMATICA
Table[Floor[51/n], {n, 100}] (* Harvey P. Dale, Jan 31 2023 *)
PROG
(Magma) [Floor(51/n): n in [1..100]]; // Wesley Ivan Hurt, Apr 04 2023
CROSSREFS
Sequence in context: A160474 A317620 A317415 * A191514 A334339 A131536
KEYWORD
easy,nonn
AUTHOR
STATUS
approved