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”).
%I #10 Jan 23 2018 04:59:40
%S 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,
%T 68,68,69,69,65,65,66,66,67,67,68,68,69,69,75,75,76,76,77,77,78,78,79,
%U 79,75,75,76,76,77,77,78,78,79,79,85,85,86,86,87,87,88,88,89,89,85,85,86
%N Replace each digit d of n with floor(d/2) + 5.
%H Vincenzo Librandi, <a href="/A106746/b106746.txt">Table of n, a(n) for n = 0..5000</a>
%t a[n_]:=FromDigits[Map[Floor[ #/2]+5&, IntegerDigits[n]]];Table[a[n], {n, 0, 100}]
%K nonn,base
%O 0,1
%A _Zak Seidov_, May 12 2005