A128467 a(n) = 30*n + 11.
11, 41, 71, 101, 131, 161, 191, 221, 251, 281, 311, 341, 371, 401, 431, 461, 491, 521, 551, 581, 611, 641, 671, 701, 731, 761, 791, 821, 851, 881, 911, 941, 971, 1001, 1031, 1061, 1091, 1121, 1151, 1181, 1211, 1241, 1271, 1301, 1331, 1361, 1391, 1421, 1451
Offset: 0
Examples
41 = 30*1 + 11, the lower part of the twin prime pair 41,43.
Programs
-
Mathematica
Range[11, 7000, 30] (* Vladimir Joseph Stephan Orlovsky, Jul 13 2011 *) 30*Range[0,50]+11 (* Harvey P. Dale, Oct 09 2023 *)
-
PARI
forstep(x=11,1500,30,print1(x","))
Formula
From R. J. Mathar, Dec 05 2007: (Start)
O.g.f.: (11+19*x)/(-1+x)^2 = 19/(-1+x) + 30/(-1+x)^2.
a(n) = 30*n + 11. (End)
Extensions
Offset corrected by Eric Rowland, Aug 15 2017
Comments