OFFSET
0,2
COMMENTS
Let A be the Hessenberg matrix of order n, defined by: A[1,j]=1, A[i,i]:=11, (i>1), A[i,i-1]=-1, and A[i,j]=0 otherwise. Then, for n>=2, a(n-1)=-charpoly(A,x^(n-1)). - Milan Janjic, Feb 21 2010
Sequence lists all nonnegative solutions to x^k == 1 (mod 11), where k is a member of A045572. - Bruno Berselli, Jan 18 2016
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..5000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
G.f.: (1+10*x)/(1-x)^2.
E.g.f.: exp(x)*(1 + 11*x). - Stefano Spezia, Oct 08 2022
MATHEMATICA
Range[1, 1000, 11] (* Vladimir Joseph Stephan Orlovsky, May 28 2011 *)
PROG
(Magma) [11*n+1: n in [0..60]]; // Vincenzo Librandi, Jul 30 2011
(PARI) a(n)=11*n+1 \\ Charles R Greathouse IV, Jan 18 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved