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

A032545
Integer part of decimal 'base-6 looking' numbers divided by their actual base-6 values, rounded down.
3
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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
OFFSET
1,36
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = floor(A007092(n)/n). - Sean A. Irvine, Jun 22 2020
MATHEMATICA
Array[IntegerPart[FromDigits[#2]/#1] & @@ {#, IntegerDigits[#, 6]} &, 105] (* Michael De Vlieger, Oct 06 2019 *)
PROG
(PARI) for(n=1, 1e3, v=eval(Vec(Str(n))); if(vecmax(v)<6, print1(n\sum(i=1, #v, v[i]*6^(#v-i))", "))) \\ Charles R Greathouse IV, Apr 08 2012
CROSSREFS
See also A032532 for explanation.
Sequence in context: A044929 A000520 A044930 * A231560 A113679 A262438
KEYWORD
nonn,easy,base
AUTHOR
Patrick De Geest, Apr 15 1998
STATUS
approved