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 A061717 #20 Dec 13 2024 06:29:34 %S A061717 0,2,5,8,12,16,20,24,29,34,39,44,49,54,59,64,70,76,81,87,93,99,105, %T A061717 111,117,123,129,135,141,148,154,160,167,173,180,187,193,200,207,213, %U A061717 220,227,234,241,248,255,262,269,276,283,290,297,304,311,318,326,333 %N A061717 Binary order of n^n. %H A061717 Harry J. Smith, <a href="/A061717/b061717.txt">Table of n, a(n) for n = 1..2000</a> %F A061717 a(n) = ceiling(log_2(n^n)) = A029837(A000312(n)). %o A061717 (PARI) a(n) = { if(n<=1, 0, logint(n^n-1, 2) + 1) } \\ _Harry J. Smith_, Jul 26 2009 %Y A061717 Cf. A000312, A029837, A003070, A045716. %K A061717 easy,nonn %O A061717 1,2 %A A061717 _Labos Elemer_, Jun 20 2001 %E A061717 Offset changed from 0 to 1 by _Harry J. Smith_, Jul 26 2009