login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A276334
a(n) = A258199(n) * A276333(n).
5
0, 1, 2, 3, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 72, 72, 72, 72, 72, 72, 72, 72
OFFSET
0,3
COMMENTS
a(n) is obtained by first replacing with zeros all other digits except the leftmost (the most significant) in the greedy A001563-base representation of n (A276326), then converting back to decimal. Used to compute A276335.
LINKS
FORMULA
a(n) = A258199(n) * A276333(n).
A276335(n) = n - a(n).
MATHEMATICA
Table[# Floor[n/#] &@ (# #!) &@ NestWhile[# + 1 &, 0, # #! <= n &[# + 1] &], {n, 84}] (* Michael De Vlieger, Aug 31 2016 *)
PROG
(Scheme) (define (A276334 n) (* (A258199 n) (A276333 n)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Aug 30 2016
STATUS
approved