cp's OEIS Frontend

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.

A084079 Sum of absolute values of lists created by n substitutions k -> Range[ -Abs[k+1],Abs[k-1],2] starting with {1}.

This page as a plain text file.
%I A084079 #3 Mar 30 2012 18:37:43
%S A084079 1,2,7,16,53,130,431,1104,3689,9730,32775,88288,299501
%N A084079 Sum of absolute values of lists created by n substitutions k -> Range[ -Abs[k+1],Abs[k-1],2] starting with {1}.
%C A084079 Sums of absolute of sublists from A084075.
%e A084079 Sums of absolute values of {1}, {-2,0}, {-1,1,3,-1,1}, {0,2,-2,0,-4,-2,0,2,0,2,-2,0} are 1,2,7,16
%t A084079 Plus@@@Abs/@Flatten/@NestList[ # /. k_Integer :> Range[ -Abs[k+1], Abs[k-1], 2]&, {1}, 12]
%Y A084079 Cf. A084075.
%K A084079 nonn
%O A084079 0,2
%A A084079 _Wouter Meeussen_, May 11 2003