OFFSET
0,1
COMMENTS
Or, with a different offset, 12*n - 1. In any case, numbers congruent to -1 (mod 12). - Alonso del Arte, May 29 2011
Numbers congruent to 2 (mod 3) and 3 (mod 4). - Bruno Berselli, Jul 06 2017
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..3000
John Elias, 60*n+55 Triangular Snowflakes
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 1000
Tanya Khovanova, Recursive Sequences
Leo Tavares, Illustration: Twin Hexagonal Frames
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 2*a(n-1) - a(n-2). - Vincenzo Librandi, Jun 08 2011
G.f.: (11+x)/(1-x)^2. - Colin Barker, Feb 19 2012
A089911(2*a(n)) = 11. - Reinhard Zumkeller, Jul 05 2013
a(n) = 2*A003215(n+1) - 1 - 2*A003215(n). See Twin Hexagonal Frames illustration. - Leo Tavares, Aug 19 2021
MATHEMATICA
Array[12*#+11&, 100, 0] (* Vladimir Joseph Stephan Orlovsky, Dec 14 2009 *)
PROG
(PARI) a(n)=12*n+11
(Magma) [12*n+11: n in [0..60]]; // Vincenzo Librandi, Jun 08 2011
(Haskell)
a017653 = (+ 11) . (* 12) -- Reinhard Zumkeller, Jul 05 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved