[go: up one dir, main page]

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!)
A074167 Product of prime divisors of composite numbers between consecutive primes. 2
1, 2, 6, 60, 6, 420, 6, 4620, 32760, 30, 471240, 14820, 42, 15180, 556920, 15273720, 30, 11171160, 164220, 6, 253333080, 2460, 587636280, 625757605200, 4620, 102, 289380, 6, 170940, 26848135265397670224000, 33540, 599888520, 138, 39560762839197600, 30 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 6 <=> A000040(n) in { A059960 }. - Alois P. Heinz, May 29 2022
EXAMPLE
a(4) = product of prime factors of composite numbers between 7 and 11 = 2 * 3 * (2 * 5) = 60.
MAPLE
a:= n-> mul(mul(i[1], i=ifactors(j)[2]), j=ithprime(n)+1..ithprime(n+1)-1):
seq(a(n), n=1..40); # Alois P. Heinz, May 29 2022
MATHEMATICA
Array[Times @@ Flatten@ Map[FactorInteger[#][[All, 1]] &, Range[#1 + 1, #2 - 1]] & @@ Prime[{#, # + 1}] &, 35] (* Michael De Vlieger, May 29 2022 *)
PROG
(PARI) a(n) = my(p=1); forcomposite(c=prime(n), prime(n+1), p*=factorback(factorint(c)[, 1])); p; \\ Michel Marcus, May 29 2022
CROSSREFS
Sequence in context: A357092 A132525 A316198 * A083787 A347979 A138286
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 30 2002
EXTENSIONS
Corrected and extended by Joshua Zucker, May 08 2006
Offset corrected by Alois P. Heinz, May 29 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 August 29 18:55 EDT 2024. Contains 375518 sequences. (Running on oeis4.)