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 A054888 #56 Jul 09 2024 07:13:46 %S A054888 1,5,15,40,105,275,720,1885,4935,12920,33825,88555,231840,606965, %T A054888 1589055,4160200,10891545,28514435,74651760,195440845,511670775, %U A054888 1339571480,3507043665,9181559515,24037634880,62931345125 %N A054888 Layer counting sequence for hyperbolic tessellation by regular pentagons of angle Pi/2. %C A054888 The layer sequence is the sequence of the cardinalities of the layers accumulating around a (finite-sided) polygon of the tessellation under successive side-reflections. %H A054888 Reinhard Zumkeller, <a href="/A054888/b054888.txt">Table of n, a(n) for n = 0..999</a> (indices corrected to start at zero by _Sidney Cadot_, Jan 07 2022) %H A054888 Paolo Dominici, <a href="/layers.html">Illustration</a> %H A054888 <a href="/index/Con#coordseqs">Index entries for Coordination Sequences</a> [A layer sequence is a kind of coordination sequence. - _N. J. A. Sloane_, Nov 20 2022] %H A054888 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (3,-1). %F A054888 a(n) = 5*A001906(n) + [n=0]. %F A054888 G.f.: (1+x)^2/(1-3*x+x^2). %F A054888 G.f.: exp( Sum_{n>=1} 5*Fibonacci(n)^2 * x^n/n ). - _Paul D. Hanna_, Feb 21 2012 %F A054888 a(n) = A001906(n-1) + 2*A001906(n) + A001906(n+1). - _R. J. Mathar_, Nov 28 2011 %F A054888 a(n) = A203976(A004277(n-1)). - _Reinhard Zumkeller_, Jan 11 2012 %F A054888 a(n) = 5*A000045(2*n) for n >= 1. - _Robert Israel_, Jun 01 2015 %F A054888 a(n) = A002878(n-1)+A002878(n). - _R. J. Mathar_, Jul 09 2024 %t A054888 LinearRecurrence[{3,-1},{1,5,15},30] (* _Harvey P. Dale_, Jan 15 2023 *) %t A054888 Join[{1}, 5*Fibonacci[2*Range[40]]] (* _G. C. Greubel_, Feb 08 2023 *) %o A054888 (Haskell) %o A054888 a054888 n = a054888_list !! (n-1) %o A054888 a054888_list = 1 : zipWith (+) (tail a002878_list) a002878_list %o A054888 -- _Reinhard Zumkeller_, Jan 11 2012 %o A054888 (PARI) {a(n)=polcoeff(exp(sum(k=1,n,5*fibonacci(k)^2*x^k/k)+x*O(x^n)), n)} /* _Paul D. Hanna_, Feb 21 2012 */ %o A054888 (Magma) [n eq 0 select 1 else 5*Fibonacci(2*n): n in [0..40]]; // _G. C. Greubel_, Feb 08 2023 %o A054888 (SageMath) [5*fibonacci(2*n) + int(n==0) for n in range (41)] # _G. C. Greubel_, Feb 08 2023 %Y A054888 Cf. A000045, A001906, A002878, A004277, A203976. %Y A054888 Cf. A054886, A054887, A054889, A054890. %K A054888 nonn,easy %O A054888 0,2 %A A054888 Paolo Dominici (pl.dm(AT)libero.it), May 23 2000 %E A054888 Offset changed to 0 by _N. J. A. Sloane_, Jan 03 2022 at the suggestion of _Michel Marcus_