OFFSET
1,1
COMMENTS
Corresponds to the number of terms in A321578 which are equal to n.
EXAMPLE
a(1)=2 because 2 <= 2, 3 < 5;
a(5)=3 because 28 <= 29, 31, 37 < 41.
PROG
(Perl) use ntheory ':all'; sub a { my $p = nth_prime($_[0]+1); my $s = sum_primes($p); prime_count($s-$p, $s-1) }; print join(", ", map { a($_) } 1..100), "\n"; # Daniel Suteu, Jan 25 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
David James Sycamore, Jan 24 2019
EXTENSIONS
More terms from Daniel Suteu, Jan 25 2019
STATUS
approved