|
Search: id:A005867
|
|
|
| A005867 |
|
a(1) = 1; for n >= 2, a(n) = (p(n-1)-1)*a(n-1), where p(k) is k-th prime. (Formerly M1880)
|
|
+0 39
|
|
| 1, 1, 2, 8, 48, 480, 5760, 92160, 1658880, 36495360, 1021870080, 30656102400, 1103619686400, 44144787456000, 1854081073152000, 85287729364992000, 4434961926979584000, 257227791764815872000, 15433667505888952320000
(list; graph; listen)
|
|
|
OFFSET
|
1,3
|
|
|
COMMENT
|
Local minima of Euler's phi function - wnissen(AT)tfn.net (Walter Nissen).
Number of potential primes in a modulus primorial(n+1) sieve - Robert G. Wilson v (rgwv(AT)rgwv.com), Nov 20 2000
|
|
REFERENCES
|
Andrew V. Sutherland, Order Computations in Generic Groups, Ph. D. Dissertation, Math. Dept., M.I.T., 2007.
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=1..100
Larry Deering, The Black Key Sieve, Box 275, Bellport NY 11713-0275, 1998.
F. Ellermann, Illustration for A002110, A005867, A038110, A060753
Dennis Martin, About this sequence
Andrew V. Sutherland, Order Computations in Generic Groups, Ph. D. Dissertation, Math. Dept., M.I.T., 2007.
|
|
FORMULA
|
phi(product of first n primes), where phi = A000010.
Prod_{k=1..n} prime(k)-1.
|
|
EXAMPLE
|
Comment from Dennis Martin (dennis.martin(AT)dptechnology.com), Jul 16 2006: "This is also the number of composite numbers that will have the indexed prime as their lowest prime factor within any interval of the primorial of that next prime factor starting after p.
"For example, for p(4) = 7 there are a(4) = 8 composite numbers that have p(4) as their lowest prime factor in the interval of p(4)# = 210 from p(4) + 1 to p(4) + p(4)# = 217, those 8 being {49, 77, 91, 119, 133, 161, 203, 217}.
"And then there are a(4) = 8 composite numbers that have p(4) = 7 as their lowest prime factor in every subsequent interval of p(4) = 210, such as {259, 287, 301, 329, 343, 371, 413, 427} from 218 to 427, and each element is offset by 210n from the first interval."
a(4): the mod 30 prime remainder set sieve representation yields the remainder set: {1, 7, 11, 13, 17, 19, 23, 29}, 8 elements.
|
|
MATHEMATICA
|
Table[ Product[ EulerPhi[ Prime[ j ] ], {j, 1, n} ], {n, 1, 20} ]
|
|
PROGRAM
|
(PARI) for(n=0, 22, print(prod(k=1, n, prime(k)-1)))
|
|
CROSSREFS
|
Cf. A002110.
Sequence in context: A112541 A052667 A006925 this_sequence A079802 A009741 A009745
Adjacent sequences: A005864 A005865 A005866 this_sequence A005868 A005869 A005870
|
|
KEYWORD
|
nonn,easy,nice
|
|
AUTHOR
|
njas
|
|
|
Search completed in 0.002 seconds
|