OFFSET
1,2
COMMENTS
A069482 gives the values of (prime(n+1)^2 - prime(n)^2), in order, with duplicates.
For n>=3 (prime(n+1)^2 - prime(n)^2)/24 is an integer.
The list here is sorted with duplicates removed to examine the nature and scope coverage over the integers of these ratios.
a(n) values have increasing differences on average, and approximately fit a curve for the n-th distinct value, given by (1/3)*n*log(n) + (3/10)*n*log(log(n))^3 for the first 10,000 values.
The differences between adjacent a(n) values, examined over the first 100,000 values, indicates all integers are covered (i.e., for any integer k there is at least one n where k = a(n+1) - a(n)).
Prime factorization of a(n) indicates every prime will appear as a factor for at least one a(n) value.
MATHEMATICA
DeleteDuplicates[Sort[Table[(Prime[n + 1]^2 - Prime[n]^2)/24, {n, 3, 300}]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Richard R. Forberg, Feb 19 2015
STATUS
approved