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

A075106
Denominator of n/floor(log_2(n)); numerator is A075105(n).
4
1, 1, 1, 2, 1, 2, 3, 1, 3, 3, 1, 3, 3, 1, 1, 4, 2, 4, 1, 4, 2, 4, 1, 4, 2, 4, 1, 4, 2, 4, 5, 5, 5, 1, 5, 5, 5, 5, 1, 5, 5, 5, 5, 1, 5, 5, 5, 5, 1, 5, 5, 5, 5, 1, 5, 5, 5, 5, 1, 5, 5, 5, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3, 6, 1, 6, 3, 2, 3
OFFSET
2,4
LINKS
FORMULA
a(n) = A000523(n)/A075104(n).
MATHEMATICA
Table[n/Floor[Log[2, n]], {n, 2, 110}]//Denominator (* Harvey P. Dale, Feb 25 2018 *)
PROG
(Haskell)
import Data.Ratio ((%), denominator)
a075106 n = denominator $ n % a000523 n
-- Reinhard Zumkeller, Jul 08 2014
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Reinhard Zumkeller, Sep 02 2002
STATUS
approved