OFFSET
1,3
COMMENTS
Conjecture 1: a(n) > 0 for all n > 0. In other words, for each positive integer n, there is a number k among 1,...,n such that |tau(k)|*n + 1 is prime.
Conjecture 2: For each integer n > 1 not equal to 22, there is a number k among 1,...,n such that |tau(k)|*n - 1 is prime.
We have verified both conjectures for n up to 10^8.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1) = 1 since 1*|tau(1)| + 1 = 2 is a prime.
a(5) = 5 since 5*|tau(5)| + 1 = 5*4830 + 1 = 24151 is prime, and 5*|tau(k)| + 1 is composite for every k = 1, 2, 3, 4.
MATHEMATICA
t[n_]:=t[n]=Abs[RamanujanTau[n]];
L={}; Do[Do[If[PrimeQ[t[k]n+1], L=Append[L, k]; Goto[aa]], {k, 1, n}]; L=Append[L, 0]; Label[aa], {n, 1, 100}]; Print[L]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Zhi-Wei Sun, Dec 28 2024
STATUS
approved