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!)
A243103 Product of numbers m with 2 <= m <= n whose prime divisors all divide n. 8

%I #68 Mar 23 2017 11:43:11

%S 1,2,3,8,5,144,7,64,27,3200,11,124416,13,6272,2025,1024,17,35831808,

%T 19,1024000,3969,247808,23,859963392,125,346112,729,2809856,29,

%U 261213880320000000,31,32768,264627,18939904,30625,26748301344768,37,23658496,369603,32768000000,41

%N Product of numbers m with 2 <= m <= n whose prime divisors all divide n.

%C This sequence is the product of n-regular numbers.

%C A number m is said to be "regular" to n or "n-regular" if all the prime factors p of m also divide n.

%C The divisor is a special case of a regular m such that m also divides n in addition to all of its prime factors p | n.

%C Analogous to A007955 (Product of divisors of n).

%C If n is 1 or prime, a(n) = n.

%C If n is a prime power, a(n) = A007955(n).

%C Note: b-file ends at n = 4619, because a(4620) has more than 1000 decimal digits.

%C Product of the numbers 1 <= k <= n such that (floor(n^k/k) - floor((n^k - 1)/k)) = 1. - _Michael De Vlieger_, May 26 2016

%H Michael De Vlieger, <a href="/A243103/b243103.txt">Table of n, a(n) for n = 1..4619</a>

%H Encyclopedia Britannica, <a href="http://www.britannica.com/EBchecked/topic/496213/regular-number">Regular Number</a> (base-neutral definition)

%H Eric W. Weisstein, <a href="http://mathworld.wolfram.com/RegularNumber.html">Regular Number</a> (decimal definition)

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Regular_number">Regular Number</a> (sexagesimal / Hamming number definition)

%F a(n) = product of terms of n-th row of irregular triangle A162306(n,k).

%F a(n) = Product_{k=1..n} k^( floor(n^k/k)-floor((n^k -1)/k) ). - _Anthony Browne_, Jul 06 2016

%F From _Antti Karttunen_, Mar 22 2017: (Start)

%F a(n) = Product_{k=2..n, A123275(n,k)=1} k.

%F For n >= 1, A046523(a(n)) = A283990(n).

%F (End)

%e a(12) = 124416 since 1 * 2 * 3 * 4 * 6 * 8 * 9 * 12 = 124416. These numbers are products of prime factors that are the distinct prime divisors of 12 = {2, 3}.

%e From _David A. Corneth_, Feb 09 2015: (Start)

%e Let p# be the product of primes up to p, A002110. Then

%e a(13#) ~= 8.3069582 * 10 ^ 4133

%e a(17#) ~= 1.3953000 * 10 ^ 22689

%e a(19#) ~= 3.8258936 * 10 ^ 117373

%e a(23#) ~= 6.7960327 * 10 ^ 594048

%e a(29#) ~= 1.3276817 * 10 ^ 2983168

%e a(31#) ~= 2.8152792 * 10 ^ 14493041

%e a(37#) ~= 1.9753840 * 10 ^ 69927040

%e Up to n = 11# already in the table.

%e (End)

%p A:= proc(n) local F, S, s, j, p;

%p F:= numtheory:-factorset(n);

%p S:= {1};

%p for p in F do

%p S:= {seq(seq(s*p^j, j=0..floor(log[p](n/s))), s=S)}

%p od;

%p convert(S,`*`)

%p end proc:

%p seq(A(n), n=1..100); # _Robert Israel_, Feb 09 2015

%t regularQ[m_Integer, n_Integer] := Module[{omega = First /@ FactorInteger @ m }, If[Length[Select[omega, Divisible[n, #] &]] == Length[omega], True, False]]; a20140819[n_Integer] := Times @@ Flatten[Position[Thread[regularQ[Range[1, n], n]], True]]; a20140819 /@ Range[41]

%t regulars[n_] := Block[{f, a}, f[x_] := First /@ FactorInteger@ x; a = f[n];{1}~Join~Select[Range@ n, SubsetQ[a, f@ #] &]]; Array[Times @@ regulars@ # &, 12] (* _Michael De Vlieger_, Feb 09 2015 *)

%t Table[Times @@ Select[Range@ n, (Floor[n^#/#] - Floor[(n^# - 1)/#]) == 1 &], {n, 41}] (* _Michael De Vlieger_, May 26 2016 *)

%o (PARI) lista(nn) = {vf = vector(nn, n, Set(factor(n)[,1])); vector(nn, n, prod(i=1, n, if (setintersect(vf[i], vf[n]) == vf[i], i, 1)));} \\ _Michel Marcus_, Aug 23 2014

%o (PARI) for(n=1, 100, print1(prod(k=1, n, k^(floor(n^k/k) - floor((n^k - 1)/k))),", ")) \\ _Indranil Ghosh_, Mar 22 2017

%o (Python)

%o from sympy import primefactors

%o def A243103(n):

%o y, pf = 1, set(primefactors(n))

%o for m in range(2,n+1):

%o if set(primefactors(m)) <= pf:

%o y *= m

%o return y # _Chai Wah Wu_, Aug 28 2014

%o (Scheme)

%o ;; A naive implementation, code for A123275bi given under A123275:

%o (define (A243103 n) (let loop ((k n) (m 1)) (cond ((= 1 k) m) ((= 1 (A123275bi n k)) (loop (- k 1) (* m k))) (else (loop (- k 1) m)))))

%o ;; _Antti Karttunen_, Mar 22 2017

%Y Cf. A162306 (irregular triangle of regular numbers of n), A010846 (number of regular numbers of n), A244974 (sum of regular numbers of n), A007955, A244052 (record transform of regular numbers of n).

%Y Cf. A123275, A283990.

%K nonn

%O 1,2

%A _Michael De Vlieger_, Aug 19 2014

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)