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 A224513 #14 Feb 20 2022 15:11:55 %S A224513 1,5,17,21,33,69,81,85,97,133,241,277,289,325,337,341,353,389,497,533, %T A224513 641,965,1073,1109,1121,1157,1265,1301,1313,1349,1361,1365,1377,1413, %U A224513 1521,1557,1665,1989,2097,2133,2241,2565,3537,3861,3969,4293,4401,4437,4449 %N A224513 Gray code variant of A147562. %C A224513 A147562 = the partial sums of A147582, derived from the binary weight of n, wt() = A000120. A224513 = the partial sums of A224512, derived from the Gray code weight of n (number of 1's in the representation of n), gt() = A005811. %C A224513 2^n-th terms = A002450 =(1, 5, 21, 85, 341, ...); as in A147562. %C A224513 At the date of this submission, it's unknown if the terms represent a simple CA rule for the numbers of ON cells. %F A224513 For n>0, a(n) = 1 + 4 * Sum_{k=1..n} 3^(gt(k)-1) where gt() = A005811. %F A224513 Partial sums of A224512. %e A224513 a(4) = 21 = (1 + 4 + 12 + 4), where (1, 4, 12, 4, ...) are the first four terms of A224512. %o A224513 (PARI) gt(n) = sum(kk=1, n, (-1)^((kk/2^valuation(kk, 2)-1)/2)); \\ from A005811. %o A224513 a(n) = if (n==0, 1, 1 + 4*sum(k=1, n, 3^(gt(k)-1))); \\ _Michel Marcus_, Apr 22 2013 %Y A224513 Cf. A224512, A147562, A002450. %K A224513 nonn %O A224513 0,2 %A A224513 _Gary W. Adamson_, Apr 08 2013