A221984 Number of primes of the form (x+1)^11 - x^11 having n digits.
1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0, 3, 3, 3, 6, 6, 5, 6, 5, 20, 17, 21, 29, 33, 29, 52, 67, 86, 75, 114, 120, 146, 191, 267, 291, 394, 470, 561, 652, 837, 1063, 1339, 1709, 2018, 2475, 3092, 3680, 4750, 5925, 7295, 9063, 11174, 14034, 17294, 21208
Offset: 9
Links
- Vladimir Pletser, Table of n, a(n) for n = 9..86
Programs
-
Mathematica
nn = 40; t = Table[0, {nn}]; n = 0; While[n++; p = (n + 1)^11 - n^11; p < 10^nn, If[PrimeQ[p], m = Ceiling[Log[10, p]]; t[[m]]++]]; t (* T. D. Noe, Feb 04 2013 *)
Comments