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 A261587 #16 Feb 16 2025 08:33:26 %S A261587 0,1,1,2,3,5,8,13,21,34,55,30,26,56,23,20,43,63,47,51,98,31,70,101, %T A261587 112,95,89,125,96,103,81,125,29,95,65,101,48,149,138,169,130,122,134, %U A261587 138,154,174,151,148,122,152,156,131,169,241,233,179,235,178,236 %N A261587 Sum of sexagesimal digits of Fibonacci numbers in base-60 representation. %C A261587 a(n) is the sum of the n-th row of table A261575. %H A261587 Reinhard Zumkeller, <a href="/A261587/b261587.txt">Table of n, a(n) for n = 0..10000</a> %H A261587 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Sexagesimal.html">Sexagesimal</a> %H A261587 Wikipedia, <a href="http://www.wikipedia.org/wiki/Sexagesimal">Sexagesimal</a> %p A261587 a:= n-> add(i, i=convert((<<0|1>, <1|1>>^n)[1, 2], base, 60)): %p A261587 seq(a(n), n=0..60); # _Alois P. Heinz_, Jan 22 2022 %t A261587 Table[Total[IntegerDigits[n,60]],{n,Fibonacci[Range[0,60]]}] (* _Harvey P. Dale_, Aug 02 2019 *) %o A261587 (Haskell) %o A261587 a261587 = sum . a261575_row %o A261587 (PARI) a(n) = sumdigits(fibonacci(n), 60); \\ _Michel Marcus_, Jan 22 2022 %Y A261587 Cf. A261575, A000045, A004090, A261598. %K A261587 nonn,base %O A261587 0,4 %A A261587 _Reinhard Zumkeller_, Sep 09 2015