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 A220363 #19 Mar 19 2022 17:08:43 %S A220363 1,-1,4,3,35,112,533,2163,9316,39215,166519,704736,2986361,12648727, %T A220363 53583620,226979403,961507387,4072998992,17253519469,73087050795, %U A220363 309601764836,1311494041879,5555578042799,23533806034368,99690802469425,422297015444207 %N A220363 a(n) = Fibonacci(n)^3 + (-1)^n*Fibonacci(n+2). %C A220363 An integral pentagon is a pentagon with integer sides and diagonals. There are two types of such pentagons. %C A220363 Type B have sides A056570(n+2), A056570(n+2), a(n+2), A056570(n+2), A056570(n+2), and opposite diagonals A220362(n+2), A066258(n+2), A066258(n+2), A066258(n+2), A220362(n+2), for n=1,2,... %D A220363 R. K. Guy, Unsolved Problems in Number Theory, D20. %H A220363 Indranil Ghosh, <a href="/A220363/b220363.txt">Table of n, a(n) for n = 0..1593</a> %H A220363 J. H. Jordan, B. E. Peterson, <a href="http://projecteuclid.org/euclid.rmjm/1181072619">Almost regular integer Fibonacci pentagons</a>, Rocky Mountain J. Math. Volume 23, Number 1 (1993), 243-247. %H A220363 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,6,-3,-1). %F A220363 a(n) = 3*a(n-1)+6*a(n-2)-3*a(n-3)-a(n-4). G.f.: (x^2-4*x+1) / ((x^2-x-1)*(x^2+4*x-1)). - _Colin Barker_, Sep 23 2014 %t A220363 Table[Fibonacci[n]^3 + (-1)^n * Fibonacci[n + 2], {n, 0, 30}] (* _T. D. Noe_, Dec 13 2012 *) %t A220363 LinearRecurrence[{3,6,-3,-1},{1,-1,4,3},30] (* _Harvey P. Dale_, Mar 19 2022 *) %o A220363 (PARI) Vec((x^2-4*x+1)/((x^2-x-1)*(x^2+4*x-1)) + O(x^100)) \\ _Colin Barker_, Sep 23 2014 %o A220363 (PARI) a(n) = fibonacci(n)^3 + (-1)^n*fibonacci(n+2) \\ _Charles R Greathouse IV_, Feb 14 2017 %K A220363 sign,easy %O A220363 0,3 %A A220363 _Michel Marcus_, Dec 12 2012