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 A100310 #28 May 03 2023 09:14:15 %S A100310 1,8,50,400,2402,19216,120100,960800,5764802,46118416,288240100, %T A100310 2305920800,13847054404,110776435232,692352720200,5538821761600, %U A100310 33232930569602,265863444556816,1661646528480100,13293172227840800 %N A100310 Modulo 2 binomial transform of 7^n. %C A100310 7^n may be retrieved through 7^n = Sum_{k=0..n} (-1)^A010060(n-k) * mod(binomial(n,k), 2) * a(k). %H A100310 G. C. Greubel, <a href="/A100310/b100310.txt">Table of n, a(n) for n = 0..1000</a> %H A100310 Vladimir Shevelev, <a href="http://arxiv.org/abs/1011.6083">On Stephan's conjectures concerning Pascal triangle modulo 2 and their polynomial generalization</a>, arXiv:1011.6083 [math.NT], 2010-2012; J. of Algebra Number Theory: Advances and Appl., 7 (2012), no.1, 11-29. %F A100310 a(n) = Sum_{k=0..n} mod(binomial(n, k), 2)*7^k. %F A100310 From _Vladimir Shevelev_, Dec 26-27 2013: (Start) %F A100310 Sum_{n>=0} 1/a(n)^r = Product_{k>=0} (1 + 1/(7^(2^k)+1)^r), %F A100310 Sum_{n>=0} (-1)^A000120(n)/a(n)^r = Product_{k>=0} (1 - 1/(7^(2^k)+1)^r), where r>0 is a real number. %F A100310 In particular, %F A100310 Sum_{n>=0} 1/a(n) = Product_{k>=0} (1 + 1/(7^(2^k)+1)) = 1.1479779...; %F A100310 Sum_{n>=0} (-1)^A000120(n)/a(n) = 6/7. %F A100310 a(2^n) = 7^(2^n)+1, n>=0. %F A100310 Note that analogs of Stephan's limit formulas (see Shevelev link) reduce to the relations: %F A100310 a(2^t*n+2^(t-1)) = 48*(7^(2^(t-1)+1))/(7^(2^(t-1))-1) * a(2^t*n+2^(t-1)-2), t>=2. %F A100310 In particular, for t=2,3,4, we have the following formulas: %F A100310 a(4*n+2) = 50 * a(4*n); %F A100310 a(8*n+4) = 1201/25 * a(8*n+2); %F A100310 a(16*n+8)= 2882401/60050 * a(16*n+6), etc. (End) %t A100310 a[n_]:= a[n]= Sum[7^k*Mod[Binomial[n,k], 2], {k,0,n}]; %t A100310 Table[a[n], {n,0,40}] (* _G. C. Greubel_, Feb 01 2023 *) %o A100310 (Magma) [(&+[7^k*(Binomial(n,k) mod 2): k in [0..n]]): n in [0..40]]; // _G. C. Greubel_, Feb 01 2023 %o A100310 (SageMath) %o A100310 def A100310(n): return sum(7^k*(binomial(n, k)%2) for k in range(n+1)) %o A100310 [A100310(n) for n in range(41)] # _G. C. Greubel_, Feb 01 2023 %o A100310 (Python) %o A100310 def A100310(n): return sum((bool(~n&n-k)^1)*7**k for k in range(n+1)) # _Chai Wah Wu_, May 03 2023 %Y A100310 Cf. A000120, A001316, A001317, A010060, A038183. %Y A100310 Cf. A100307, A100308, A100309, A100311. %K A100310 easy,nonn %O A100310 0,2 %A A100310 _Paul Barry_, Dec 06 2004