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.
%I A139697 #23 Feb 08 2022 20:18:17 %S A139697 1,13,37,85,181,373,757,1525,3061,6133,12277,24565,49141,98293,196597, %T A139697 393205,786421,1572853,3145717,6291445,12582901,25165813,50331637, %U A139697 100663285,201326581,402653173,805306357,1610612725,3221225461,6442450933,12884901877 %N A139697 Binomial transform of [1, 12, 12, 12, ...]. %C A139697 The binomial transform of [1, c, c, c, ...] has the terms a(n) = 1 - c + c*2^(n-1) if the offset 1 is chosen. The o.g.f. of the a(n) is x*(1+(c-2)*x)/((2x-1)*(x-1)). This applies to A139634 with c=10, to A139635 with c=11, to A139697 with c=12, to A139698 with c=25 and to A099003, A139700, A139701 accordingly. - _R. J. Mathar_, May 11 2008 %H A139697 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (3,-2). %F A139697 A007318 * [1, 12, 12, 12, ...]. %F A139697 a(n) = 12*2^(n-1) - 11. - _Emeric Deutsch_, May 05 2008 %F A139697 a(n) = 2*a(n-1) + 11 (with a(1)=1). - _Vincenzo Librandi_, Nov 24 2010 %F A139697 From _Colin Barker_, Oct 10 2013: (Start) %F A139697 a(n) = 3*2^(n+1) - 11. %F A139697 a(n) = 3*a(n-1) - 2*a(n-2). %F A139697 G.f.: x*(10*x+1) / ((x-1)*(2*x-1)). (End) %e A139697 a(4) = 85 = (1, 3, 3, 1) dot (1, 12, 12, 12) = (1 + 36 + 36 + 12). %p A139697 seq(12*2^(n-1)-11,n=1..25); # _Emeric Deutsch_, May 05 2008 %t A139697 a=1; lst={a}; k=12; Do[a+=k; AppendTo[lst, a]; k+=k, {n, 0, 5!}]; lst (* _Vladimir Joseph Stephan Orlovsky_, Dec 17 2008 *) %Y A139697 Cf. A139634, A139635. %K A139697 nonn,easy %O A139697 1,2 %A A139697 _Gary W. Adamson_, Apr 29 2008 %E A139697 More terms from _Emeric Deutsch_, May 05 2008 %E A139697 More terms from _Colin Barker_, Oct 10 2013