OFFSET
0,4
COMMENTS
A001611 is similar but strictly different.
Equal to A256969 except for n = 2 and n = 3. The following argument shows that they are equal for n > 3. First note that b(k+1) > b(k). Next, Product_{i=1..k} p_i is 2 times an odd number, i.e., it is not divisible by 4. Similarly since p_i - 1 is even for i > 1, Product_{i=1..k} (p_i - 1) is divisible by 2^(k-1), i.e., it is divisible by 4 for k >= 3. Thus b(k) is not an integer for k >= 3. Since b(3) = 15/4 > 3, this means that A256969(n) = A256968(n) for n > 3 - Chai Wah Wu, Apr 17 2015
LINKS
Popular Computing (Calabasas, CA), Problem 182 (Suggested by Victor Meally), Annotated and scanned copy of page 10 of Vol. 5 (No. 53, Aug 1977).
EXAMPLE
PROG
(Python)
from sympy import prime
A256968_list, count, bn, bd = [], 0, 1, 1
for k in range(1, 10**4):
....p = prime(k)
....bn *= p
....bd *= p-1
....while bn >= count*bd:
........A256968_list.append(k)
........count += 1 # Chai Wah Wu, Apr 17 2015
CROSSREFS
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Apr 17 2015
EXTENSIONS
More terms from Chai Wah Wu, Apr 17 2015
a(32)-a(33) from Chai Wah Wu, Apr 19 2015
STATUS
approved