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!)
A341090 Fully multiplicative: for any prime p, if the reversal of p in base 10, say q, is prime, then a(p) = q, otherwise a(p) = p. 2
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 31, 14, 15, 16, 71, 18, 19, 20, 21, 22, 23, 24, 25, 62, 27, 28, 29, 30, 13, 32, 33, 142, 35, 36, 73, 38, 93, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 213, 124, 53, 54, 55, 56, 57, 58, 59, 60, 61, 26, 63, 64, 155, 66 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence is a self-inverse permutation of the natural numbers.
LINKS
EXAMPLE
For n = 377:
- 377 = 13 * 29,
- the reversal of 13, 31, is prime,
- the reversal of 29, 92, is not prime,
- so a(377) = 31 * 29 = 899.
MAPLE
R:= n-> (s-> parse(cat(s[-i]$i=1..length(s))))(""||n):
a:= proc(n) option remember; mul((q->
`if`(isprime(q), q, j[1]))(R(j[1]))^j[2], j=ifactors(n)[2])
end:
seq(a(n), n=1..66); # Alois P. Heinz, Feb 15 2022
MATHEMATICA
f[p_, e_] := If[PrimeQ[(q = IntegerReverse[p])], q, p]^e; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Feb 15 2022 *)
PROG
(PARI) a(n) = { my (f=factor(n)); prod (k=1, #f~, my (p=f[k, 1], e=f[k, 2], q=fromdigits(Vecrev(digits(p)))); if (isprime(q), q, p)^e) }
CROSSREFS
Sequence in context: A061921 A342042 A277650 * A071786 A151766 A004852
KEYWORD
nonn,base,mult
AUTHOR
Rémy Sigrist, Feb 13 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 June 23 08:04 EDT 2024. Contains 373629 sequences. (Running on oeis4.)