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 A124152 #11 Dec 07 2019 12:18:25 %S A124152 0,8,70,360,1292,3640,8658,18200,34840,61992,104030,166408,255780, %T A124152 380120,548842,772920,1065008,1439560,1912950,2503592,3232060,4121208, %U A124152 5196290,6485080,8017992,9828200,11951758,14427720,17298260,20608792,24408090,28748408 %N A124152 a(n) = Fibonacci(6, n). %H A124152 Colin Barker, <a href="/A124152/b124152.txt">Table of n, a(n) for n = 0..1000</a> %H A124152 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (6,-15,20,-15,6,-1). %F A124152 From _Colin Barker_, Apr 06 2017: (Start) %F A124152 G.f.: 2*x*(4 + 11*x + 30*x^2 + 11*x^3 + 4*x^4) / (1 - x)^6. %F A124152 a(n) = n*(3 + 4*n^2 + n^4). %F A124152 a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6) for n>5. %F A124152 (End) %p A124152 with(combinat, fibonacci):seq(fibonacci(6, i), i=0..35); %t A124152 LinearRecurrence[{6,-15,20,-15,6,-1},{0,8,70,360,1292,3640},40] (* _Harvey P. Dale_, Apr 18 2019 *) %o A124152 (Sage) [lucas_number1(6,n,-1) for n in range(0, 30)] # _Zerinvary Lajos_, May 16 2009 %o A124152 (PARI) concat(0, Vec(2*x*(4 + 11*x + 30*x^2 + 11*x^3 + 4*x^4) / (1 - x)^6 + O(x^30))) \\ _Colin Barker_, Apr 06 2017 %Y A124152 Cf. A117715 formatted as a triangular array: row 7. %Y A124152 Cf. A000045. %K A124152 nonn,easy %O A124152 0,2 %A A124152 _Zerinvary Lajos_, Dec 01 2006