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 A129955 #22 Jun 29 2023 19:57:38 %S A129955 2,3,8,18,40,88,192,416,896,1920,4096,8704,18432,38912,81920,172032, %T A129955 360448,753664,1572864,3276800,6815744,14155776,29360128,60817408, %U A129955 125829120,260046848,536870912,1107296256,2281701376,4697620480 %N A129955 Third differences of A129952. %H A129955 Vincenzo Librandi, <a href="/A129955/b129955.txt">Table of n, a(n) for n = 0..1000</a> %H A129955 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (4, -4). %F A129955 First differences of A129954: a(n) = A129954(n+1) - A129954(n). %F A129955 a(n) = A034007(n+2)-2^(n-2) for n > 1. %F A129955 a(0) = 2, a(1) = 3; for n > 1, a(n) = (n+6)*2^(n-2). %F A129955 G.f.: (2-5*x+4*x^2-2*x^3)/(1-2*x)^2. %F A129955 From _Amiram Eldar_, Jan 13 2021: (Start) %F A129955 Sum_{n>=0} 1/a(n) = 256*log(2) - 12347/70. %F A129955 Sum_{n>=0} (-1)^n/a(n) = 21851/210 - 256*log(3/2). (End) %t A129955 Differences[LinearRecurrence[{4,-4},{1,1,2,6},40],3] (* _Harvey P. Dale_, Sep 04 2020 *) %o A129955 (Magma) m:=17; S:=&cat[ [ 1, 2*i ]: i in [0..m] ]; T:=[ &+[ Binomial(j-1, k-1)*S[k]: k in [1..j] ]: j in [1..2*m] ]; U:=[ T[n+1]-T[n]: n in[1..2*m-1] ]; V:=[ U[n+1]-U[n]: n in[1..2*m-2] ]; [ V[n+1]-V[n]: n in[1..2*m-3] ]; // _Klaus Brockhaus_, Jun 17 2007 %o A129955 (PARI) {m=29; print1(2, ",", 3, ","); for(n=2, m, print1((n+6)*2^(n-2), ","))} \\ _Klaus Brockhaus_, Jun 17 2007 %Y A129955 Cf. A129952, A129953, A129954, A034007. %K A129955 nonn %O A129955 0,1 %A A129955 _Paul Curtz_, Jun 10 2007 %E A129955 Edited and extended by _Klaus Brockhaus_, Jun 17 2007