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.

A171470 a(n) = 6*a(n-1) - 8*a(n-2) for n > 2; a(0) = 11, a(1) = 90, a(2) = 372.

This page as a plain text file.
%I A171470 #14 Feb 20 2019 21:15:35
%S A171470 11,90,372,1512,6096,24480,98112,392832,1572096,6289920,25162752,
%T A171470 100657152,402640896,1610588160,6442401792,25769705472,103079018496,
%U A171470 412316467200,1649266655232,6597068193792,26388275920896
%N A171470 a(n) = 6*a(n-1) - 8*a(n-2) for n > 2; a(0) = 11, a(1) = 90, a(2) = 372.
%C A171470 Related to Reverse and Add trajectory of 22 in base 2: A061561(4*n) = 2*a(n).
%C A171470 Binary representation of a(n) for n > 0 is given by the following production rules of the contextfree grammar: S -> 101 T 0, T -> 1 T 0 | 101. - _A.H.M. Smeets_, Feb 11 2019
%H A171470 Vincenzo Librandi, <a href="/A171470/b171470.txt">Table of n, a(n) for n = 0..500</a>
%H A171470 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (6,-8).
%F A171470 a(n) = 24*4^n-3*2^n for n > 0.
%F A171470 G.f.: (1+4*x)*(11-20*x)/((1-2*x)*(1-4*x)).
%o A171470 (PARI) {m=21; v=concat([11, 90, 372], vector(m-3)); for(n=4, m, v[n]=6*v[n-1]-8*v[n-2]); v}
%Y A171470 Cf. A061561, A171471, A171472, A171473.
%K A171470 nonn,easy
%O A171470 0,1
%A A171470 _Klaus Brockhaus_, Dec 09 2009