login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A240545
Least k > 0 such that n + p(k) is prime, where p(k) is the number of partitions of k.
2
2, 1, 1, 2, 1, 2, 1, 8, 3, 2, 1, 2, 1, 9, 3, 2, 1, 2, 1, 8, 3, 2, 1, 9, 4, 8, 3, 2, 1, 2, 1, 8, 4, 11, 3, 2, 1, 8, 3, 2, 1, 2, 1, 9, 3, 2, 1, 10, 4, 8, 3, 2, 1, 9, 4, 10, 3, 2, 1, 2, 1, 8, 4, 15, 3, 2, 1, 8, 3, 2, 1, 2, 1, 9, 4, 8, 3, 2, 1, 8, 3, 2
OFFSET
0,1
COMMENTS
Conjecture of Zhi-Wei Sun: a(n) < n for n > 7.
Verified up to 6*10^8. - Sean A. Irvine, Apr 07 2014
LINKS
Zhi-Wei Sun, Problems on combinatorial properties of primes, arXiv:1402.6641, 2014. See Conjecture 4.1(ii).
EXAMPLE
a(7)=8 because k=8 is the smallest k such that 7+A000041(k) is prime.
MATHEMATICA
a[n_] := For[k = 1, True, k++, If[PrimeQ[n + PartitionsP[k]], Return[k]]];
Table[a[n], {n, 0, 100}] (* Jean-François Alcover, Dec 15 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Sean A. Irvine, Apr 07 2014
STATUS
approved