A152676 a(n) = A002144(n) - A002314(n).
3, 8, 13, 17, 31, 32, 30, 50, 46, 55, 75, 91, 76, 98, 100, 105, 129, 93, 162, 112, 183, 122, 144, 177, 241, 187, 217, 228, 155, 288, 203, 189, 213, 311, 269, 274, 334, 381, 266, 392, 254, 382, 348, 413, 301, 286, 489, 439, 483, 553, 516, 476, 578, 423, 487, 504
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
- A. J. C. Cunningham, Binomial Factorisations, Vols. 1-9, Hodgson, London, 1923-1929. See Vol. 1, pp. 1-21.
Programs
-
Mathematica
aa = {}; Do[If[Mod[Prime[n], 4] == 1, k = 1; While[ ! Mod[k^2 + 1, Prime[n]] == 0, k++ ]; AppendTo[aa, Prime[n] - k]], {n, 1, 200}]; aa
Comments