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

A106746
Replace each digit d of n with floor(d/2) + 5.
2
5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 55, 55, 56, 56, 57, 57, 58, 58, 59, 59, 65, 65, 66, 66, 67, 67, 68, 68, 69, 69, 65, 65, 66, 66, 67, 67, 68, 68, 69, 69, 75, 75, 76, 76, 77, 77, 78, 78, 79, 79, 75, 75, 76, 76, 77, 77, 78, 78, 79, 79, 85, 85, 86, 86, 87, 87, 88, 88, 89, 89, 85, 85, 86
OFFSET
0,1
LINKS
MATHEMATICA
a[n_]:=FromDigits[Map[Floor[ #/2]+5&, IntegerDigits[n]]]; Table[a[n], {n, 0, 100}]
CROSSREFS
Sequence in context: A046604 A377085 A175379 * A152481 A157276 A010486
KEYWORD
nonn,base
AUTHOR
Zak Seidov, May 12 2005
STATUS
approved