A169823 Multiples of 60.
0, 60, 120, 180, 240, 300, 360, 420, 480, 540, 600, 660, 720, 780, 840, 900, 960, 1020, 1080, 1140, 1200, 1260, 1320, 1380, 1440, 1500, 1560, 1620, 1680, 1740, 1800, 1860, 1920, 1980, 2040, 2100, 2160, 2220, 2280, 2340, 2400, 2460, 2520, 2580, 2640, 2700
Offset: 0
Links
- Erich Friedman, What's Special About This Number? (See the entry for "60")
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Crossrefs
Programs
-
Mathematica
Range[0, 2700, 60] (* Vladimir Joseph Stephan Orlovsky, Jul 12 2011 *)
-
PARI
a(n)=60*n \\ Charles R Greathouse IV, Mar 19 2017
Formula
From Elmo R. Oliveira, Apr 16 2024: (Start)
G.f.: 60*x/(x-1)^2.
E.g.f.: 60*x*exp(x).
a(n) = 60*n = 2*a(n-1) - a(n-2) for n >= 2.
Comments