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.

A122653 a(n) = 10*a(n-1) - a(n-2) with a(0)=0, a(1)=6.

This page as a plain text file.
%I A122653 #46 Dec 24 2023 09:37:26
%S A122653 0,6,60,594,5880,58206,576180,5703594,56459760,558894006,5532480300,
%T A122653 54765908994,542126609640,5366500187406,53122875264420,
%U A122653 525862252456794,5205499649303520,51529134240578406,510085842756480540,5049329293324226994,49983207090485789400
%N A122653 a(n) = 10*a(n-1) - a(n-2) with a(0)=0, a(1)=6.
%C A122653 Kekulé numbers for the benzenoids P''(n).
%C A122653 a(n) are the integer square roots of A032528(m) - 1. A001079 gives the value of m where these roots occur. Also see A122652. - _Richard R. Forberg_, Aug 05 2013
%C A122653 Numbers n such that 6*n^2 + 9 is a square. - _Colin Barker_, Mar 17 2014
%D A122653 S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988 (p. 301).
%H A122653 Harvey P. Dale, <a href="/A122653/b122653.txt">Table of n, a(n) for n = 0..1000</a>
%H A122653 Hacène Belbachir, Soumeya Merwa Tebtoub, and László Németh, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL23/Nemeth/nemeth7.html">Ellipse Chains and Associated Sequences</a>, J. Int. Seq., Vol. 23 (2020), Article 20.8.5.
%H A122653 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H A122653 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (10,-1).
%F A122653 G.f.: 6x/(1 - 10x + x^2). - _Philippe Deléham_, Nov 17 2008
%F A122653 a(n) = 6*A004189(n). - _R. J. Mathar_, Jun 22 2020
%F A122653 6*a(n)^2+9 = (3*A001079(n))^2  - detail of the Barker comment. - _R. J. Mathar_, Jun 22 2020
%t A122653 CoefficientList[Series[(6 z)/(z^2 - 10 z + 1), {z, 0, 200}], z] (* _Vladimir Joseph Stephan Orlovsky_, Jun 11 2011 *)
%t A122653 LinearRecurrence[{10,-1},{0,6},30] (* _Harvey P. Dale_, Dec 16 2014 *)
%o A122653 (PARI) a(n)=if(n<2,(n%2)*6,10*a(n-1)-a(n-2)) \\ _Benoit Cloitre_, Sep 23 2006
%K A122653 nonn,easy
%O A122653 0,2
%A A122653 _N. J. A. Sloane_, Sep 21 2006
%E A122653 More terms and better definition from _Benoit Cloitre_, Sep 23 2006