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 A062947 #17 Jul 31 2023 09:33:32 %S A062947 1,1,1,1,1,1,1,7,8,9,10,11,12,13,91,105,120,136,153,171,190,1330,1540, %T A062947 1771,2024,2300,2600,2925,20475,23751,27405,31465,35960,40920,46376, %U A062947 324632,376992,435897,501942,575757,658008,749398,5245786,6096454,7059052,8145060 %N A062947 a(n) = binomial(n,floor(n/7)). %H A062947 Seiichi Manyama, <a href="/A062947/b062947.txt">Table of n, a(n) for n = 0..5000</a> %t A062947 Table[Binomial[n,Floor[n/7]],{n,50}] (* _Harvey P. Dale_, Jul 24 2019 *) %o A062947 (PARI) j=[]; for(n=1,75,j=concat(j,binomial(n,floor(n/7)))); j %Y A062947 Cf. A001405, A051036, A051052, A051053. %K A062947 nonn,easy %O A062947 0,8 %A A062947 _Jason Earls_, Jul 21 2001 %E A062947 a(0)=1 prepended by _Alois P. Heinz_, Oct 20 2022