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 A182212 #18 Mar 13 2023 11:17:40 %S A182212 1,2,3,8,24,90,387,1920,10672,65978,448503,3326400,26725411,231242151, %T A182212 2143728472,21198368680,222722246772,2477698802526,29094738198716, %U A182212 359630747697951,4667544506825273,63463425429259086,902118740233973431,13380961044971520000 %N A182212 a(n) = floor(n! / Fibonacci(n)). %F A182212 a(n) = floor(A000142(n) / A000045(n)) = floor( n! / fibonacci(n) ), n>0. %e A182212 a(7) = floor(7! / Fibonacci[7]) = floor(5040/13) = 387. - _T. D. Noe_, Apr 19 2012 %t A182212 Table[Floor[n!/Fibonacci[n]], {n, 50}] (* _T. D. Noe_, Apr 19 2012 *) %o A182212 (Python) %o A182212 prpr = 0 %o A182212 prev = 1 %o A182212 fa = 1 %o A182212 for i in range(2,26): %o A182212 print(fa//prev, end=',') %o A182212 fa *= i %o A182212 current = prev + prpr %o A182212 prpr = prev %o A182212 prev = current %Y A182212 Cf. A182213, A000045, A000142. %K A182212 nonn %O A182212 1,2 %A A182212 _Alex Ratushnyak_, Apr 19 2012