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!)
A263877 Numbers n such that n^2 + 1 has three distinct prime divisors less than n. 2
21, 43, 57, 72, 99, 111, 117, 119, 128, 132, 142, 172, 174, 185, 192, 193, 200, 211, 212, 216, 251, 268, 294, 305, 322, 336, 338, 342, 351, 360, 378, 394, 408, 418, 431, 443, 448, 450, 460, 485, 498, 509, 515, 524, 552, 560, 562, 568, 580, 601, 606, 612, 616 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Subsequence of A256011.
The "triprimes n^2+1 numbers" are the numbers that are the product of exactly three (not necessarily distinct) primes less than n.
If the three prime divisors are distinct, the corresponding subsequence is 21, 72, 111, 119, 128, 142, 172, 174, 185, 192, 200, 211, 212, 216, 294, 305, 322, 336, 338, 342, 351, 360, 394, 431, 448, 450, 460, 485, 498, 509, 524, 552, 560, 562, 580, ...
The corresponding sequence of the number of prime divisors with multiplicity is 3, 4, 5, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 4, 5, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 4, 3, 6, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 5, 3, 3, 4, 3, 4, 3, 3, 3, 3, 4, 3, 4, ...
LINKS
EXAMPLE
72 is in the sequence because 72^2 + 1 = 5*17*61 and 5, 17 and 61 are less than 72.
MATHEMATICA
Select[Range[800], PrimeNu[#^2+1] == 3&&FactorInteger[#^2+1][[1, 1]]<#&& FactorInteger[#^2+1][[2, 1]]<#&&FactorInteger[#^2+1][[3, 1]]<#&]
PROG
(PARI) for(n=1, 1e3, t=n^2+1; if ((omega(t) == 3) && (factor(t)[, 1][3] < n), print1(n, ", "))); \\ Altug Alkan, Oct 28 2015
CROSSREFS
Sequence in context: A043167 A043947 A335477 * A041870 A041868 A135391
KEYWORD
nonn
AUTHOR
Michel Lagneau, Oct 28 2015
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)