OFFSET
1,1
COMMENTS
Multiples of 3 with the units digit equal to 3.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..2000
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = a(n-1) + 30.
MATHEMATICA
Range[3, 2000, 30] (* Vladimir Joseph Stephan Orlovsky, Jun 15 2011 *)
30*Range[50]-27 (* or *) NestList[30+#&, 3, 50] (* Harvey P. Dale, Mar 27 2021 *)
PROG
(Magma) [30*n - 27: n in [1..60]]; // Vincenzo Librandi, Jun 17 2011
(PARI) a(n)=30*n-27 \\ Charles R Greathouse IV, Aug 25 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Odimar Fabeny, Jun 06 2008
EXTENSIONS
More terms from Reinhard Zumkeller, Jun 22 2008
STATUS
approved