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!)
A362410 Numbers k such that A000292(k) is in A046386. 1
19, 33, 45, 51, 59, 61, 65, 67, 69, 77, 85, 93, 105, 109, 113, 129, 141, 165, 181, 193, 197, 201, 211, 213, 217, 221, 227, 237, 257, 261, 267, 277, 291, 301, 309, 317, 345, 347, 353, 357, 365, 393, 397, 401, 409, 417, 421, 437, 445, 461, 465, 477, 497, 521, 561, 569, 597, 613, 633, 653, 661, 677 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that k*(k+1)*(k+2)/6 is the product of four distinct primes.
All terms are odd.
LINKS
FORMULA
A000292(a(n)) = A353027(n).
EXAMPLE
a(3) = 45 is a term because 45*46*47/6 = 16215 = 3*5*23*47 is the product of four distinct primes.
MAPLE
filter:= k -> ifactors(k*(k+1)*(k+2)/6)[2][.., 2] = [1, 1, 1, 1];
select(filter, [seq(i, i=1..1000, 2)]);
MATHEMATICA
p4dpQ[n_]:=With[{c=(n(n+1)(n+2))/6}, PrimeNu[c]==PrimeOmega[c]==4]; Select[Range[ 700], p4dpQ] (* Harvey P. Dale, May 06 2024 *)
PROG
(PARI) isok(k) = my(t=k*(k+1)*(k+2)/6); (omega(t)==4) && (bigomega(t)==4); \\ Michel Marcus, Apr 20 2023
CROSSREFS
Sequence in context: A116168 A152088 A372427 * A106527 A223608 A146438
KEYWORD
nonn
AUTHOR
Robert Israel, Apr 18 2023
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 September 9 16:11 EDT 2024. Contains 375765 sequences. (Running on oeis4.)