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 A230405 #16 Jan 05 2024 02:54:40 %S A230405 1,1,3,1,1,3,1,1,3,1,1,6,1,1,3,1,1,3,1,1,3,1,1,6,1,1,3,1,1,3,1,1,3,1, %T A230405 1,6,1,1,3,1,1,3,1,1,3,1,1,6,1,1,3,1,1,3,1,1,3,1,1,10,1,1,3,1,1,3,1,1, %U A230405 3,1,1,6,1,1,3,1,1,3,1,1,3,1,1,6,1,1,3 %N A230405 a(n) = A000217(A230404(n+1)); the first differences of A219650. %C A230405 Construction: Count the trailing zeros in the factorial base representation (A007623) of 2n+2 (2, 4, 6, 8, ...) and then take the corresponding triangular number from A000217. %H A230405 Antti Karttunen, <a href="/A230405/b230405.txt">Table of n, a(n) for n = 0..10079</a> %F A230405 a(n) = A000217(A230404(n+1)). %F A230405 a(n) = A219650(n+1) - A219650(n). %F A230405 Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=0..m} a(k) = 2. - _Amiram Eldar_, Jan 05 2024 %o A230405 (Scheme, two variants) %o A230405 (define (A230405 n) (A000217 (A230404 (+ 1 n)))) %o A230405 (define (A230405 n) (- (A219650 (+ n 1)) (A219650 n))) %Y A230405 First differences of A219650. Can be used to compute A219650 and A230412. %Y A230405 Cf. A000217, A007623, A230404. %Y A230405 Cf. also A230413. %K A230405 nonn %O A230405 0,3 %A A230405 _Antti Karttunen_, Oct 31 2013