cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A017401 a(n) = 11n + 1.

This page as a plain text file.
%I A017401 #34 Oct 08 2022 11:23:28
%S A017401 1,12,23,34,45,56,67,78,89,100,111,122,133,144,155,166,177,188,199,
%T A017401 210,221,232,243,254,265,276,287,298,309,320,331,342,353,364,375,386,
%U A017401 397,408,419,430,441,452,463,474,485,496,507,518,529,540,551,562,573,584,595,606,617,628,639,650,661
%N A017401 a(n) = 11n + 1.
%C A017401 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
%C A017401 Sequence lists all nonnegative solutions to x^k == 1 (mod 11), where k is a member of A045572. - _Bruno Berselli_, Jan 18 2016
%H A017401 Vincenzo Librandi, <a href="/A017401/b017401.txt">Table of n, a(n) for n = 0..5000</a>
%H A017401 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H A017401 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1).
%F A017401 G.f.: (1+10*x)/(1-x)^2.
%F A017401 E.g.f.: exp(x)*(1 + 11*x). - _Stefano Spezia_, Oct 08 2022
%t A017401 Range[1, 1000, 11] (* _Vladimir Joseph Stephan Orlovsky_, May 28 2011 *)
%o A017401 (Magma) [11*n+1: n in [0..60]]; // _Vincenzo Librandi_, Jul 30 2011
%o A017401 (PARI) a(n)=11*n+1 \\ _Charles R Greathouse IV_, Jan 18 2016
%Y A017401 Cf. A008593, A017281, A017413.
%K A017401 nonn,easy
%O A017401 0,2
%A A017401 _N. J. A. Sloane_