A236432 a(n) = (2n-1)*210; numbers which are 210 times an odd number.
210, 630, 1050, 1470, 1890, 2310, 2730, 3150, 3570, 3990, 4410, 4830, 5250, 5670, 6090, 6510, 6930, 7350, 7770, 8190, 8610, 9030, 9450, 9870, 10290, 10710, 11130, 11550, 11970, 12390, 12810, 13230, 13650, 14070, 14490, 14910, 15330, 15750, 16170, 16590, 17010
Offset: 1
Links
Crossrefs
Cf. A235921.
Programs
-
Maple
A236432:=n->420*n - 210; seq(A236432(n), n=1..50); # Wesley Ivan Hurt, Mar 13 2014
-
Mathematica
Table[420 n - 210, {n, 50}] (* Wesley Ivan Hurt, Mar 13 2014 *) LinearRecurrence[{2,-1},{210,630},41] (* Ray Chandler, Jul 14 2015 *) 210*Range[1,81,2] (* Harvey P. Dale, Apr 13 2020 *)
Comments