login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A354469 Write n in primorial base, then replace each nonzero digit d of radix p with p-d. 1
0, 1, 4, 5, 2, 3, 24, 25, 28, 29, 26, 27, 18, 19, 22, 23, 20, 21, 12, 13, 16, 17, 14, 15, 6, 7, 10, 11, 8, 9, 180, 181, 184, 185, 182, 183, 204, 205, 208, 209, 206, 207, 198, 199, 202, 203, 200, 201, 192, 193, 196, 197, 194, 195, 186, 187, 190, 191, 188, 189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This sequence is a self-inverse permutation of the nonnegative integers, similar to A225901.
There are exactly two fixed points: a(0) = 0 and a(1) = 1.
LINKS
EXAMPLE
For n = 42:
- the primorial base expansion of 42 is: (1, 2, 0, 0),
- the corresponding radixes are: (7, 5, 3, 2),
- so the primorial base expansion of a(42) is: (7-1, 5-2, 0, 0) = (6, 3, 0, 0),
- and a(42) = 198.
PROG
(PARI) a(n, s=i->prime(i)) = { my (v=0, f=1, r); for (i=1, oo, if (n==0, return (v), r=s(i); v+=f*((-n)%r); f*=r; n\=r)) }
CROSSREFS
Sequence in context: A338248 A328623 A225901 * A030322 A105662 A021225
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Jun 02 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)