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

A033332
a(n) = floor(12/n).
0
12, 6, 4, 3, 2, 2, 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, 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
MATHEMATICA
Floor[12/Range[100]] (* Harvey P. Dale, Jun 06 2022 *)
PROG
(Python)
def a(n): return 12//n
print([a(n) for n in range(1, 93)]) # Michael S. Branicky, Dec 06 2021
(Magma) [Floor(12/n): n in [1..100]]; // Wesley Ivan Hurt, Apr 04 2023
CROSSREFS
Cf. A010766.
Sequence in context: A013680 A033963 A131570 * A051725 A070292 A283880
KEYWORD
easy,nonn
AUTHOR
STATUS
approved