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

A174025
Inverse permutation to A003100.
4
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 79, 78, 77
OFFSET
0,3
PROG
(PARI) inbase(n, b)=local(r); r=[]; while(n>0, r=concat([n%b], r); n\=b); r
tobase(v, b)=local(r); for(i=1, #v, r=r*b+v[i]); r
a(n)=local(v); v=inbase(n, 10); for(k=2, #v, if(v[k-1]%2==1, v[k]=9-v[k])); tobase(v, 10)
CROSSREFS
Sequence in context: A003100 A118757 A118758 * A106649 A284030 A087121
KEYWORD
base,easy,nonn
AUTHOR
STATUS
approved