The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A109023 3-almost primes (A014612) whose digit reversal is different and also has 3 prime factors (with multiplicity). 11
117, 147, 165, 244, 246, 285, 286, 290, 338, 366, 369, 406, 418, 425, 435, 438, 442, 475, 498, 506, 507, 508, 524, 534, 539, 548, 561, 574, 582, 604, 605, 609, 628, 642, 663, 670, 682, 705, 711, 741, 759, 805, 814, 826, 833, 834, 845, 890, 894, 906, 935 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence is the k = 3 instance of the series which begins with k = 1, k = 2.
REFERENCES
W. W. R. Ball and H. S. M. Coxeter, Mathematical Recreations and Essays, 13th ed. New York: Dover, pp. 14-15, 1987.
J. Edalj, Problem 1622. L'Intermédiaire des Mathématiciens, 16, 34, 1909.
LINKS
J. Jonesco, Query 1622, L'Intermédiaire des Mathématiciens, 200, Tome VI, 1899.
Eric Weisstein's World of Mathematics, Almost Prime.
Eric Weisstein's World of Mathematics, Emirp.
Eric Weisstein and Jonathan Vos Post, Emirpimes.
EXAMPLE
1066 is in this sequence because 1066 = 2 * 13 * 41, making it a 3-almost prime and reverse(1066) = 6601 = 7 * 23 * 41, also a 3-almost prime.
2001 is in this sequence because 2001 = 3 * 23 * 29 and reverse(2001) = 1002 = 2 * 3 * 167.
MATHEMATICA
Select[Range[1000], PrimeOmega[#]==3&&PrimeOmega[FromDigits[Reverse[IntegerDigits[#]]]]==3&&!PalindromeQ[#]&] (* James C. McMahon, Mar 06 2024 *)
PROG
(PARI) is(n) = {
my(r = fromdigits(Vecrev(digits(n))));
n!=r && bigomega(n) == 3 && bigomega(r) == 3
} \\ David A. Corneth, Mar 07 2024
CROSSREFS
Sequence in context: A084344 A015706 A095625 * A272388 A272389 A201021
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
EXTENSIONS
1002 replaced by 935 - R. J. Mathar, Dec 14 2009
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 May 17 16:19 EDT 2024. Contains 372603 sequences. (Running on oeis4.)