OFFSET
1,1
COMMENTS
Sum of reciprocals = 0.766167481.... - Cino Hilliard, Dec 31 2003
The subset of primes begins: 3, 7, 23, 83, 181, 239, 563, 1013, 1447, 1607, 2129, 2729 = A184935. The subset of squares begins: 36, 49, no more through n = 100. - Jonathan Vos Post, Feb 02 2011
No more squares using primes < 10^10 (n ~ 45 million). The naive heuristic (not really applicable here, but it's a starting point) suggests something like sqrt(log(x)) up to x. - Charles R Greathouse IV, Feb 06 2011
MATHEMATICA
Table[n^2+Prime[n], {n, 50}] (* Harvey P. Dale, Feb 28 2015 *)
PROG
(PARI) primeppwr(n) = sr=0; for(x=1, n, y=x^2+prime(x); print1(y", "); sr+=1./y; ); print(); print(sr) \\ Cino Hilliard
(Magma) [n^2 +NthPrime(n): n in [1..250]]; // Vincenzo Librandi, Apr 14 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
wild(AT)edumath.u-strasbg.fr (Daniel Wild)
EXTENSIONS
More terms from Cino Hilliard, Dec 31 2003
STATUS
approved