OFFSET
0,2
COMMENTS
LINKS
FORMULA
It appears that a(n) = 4 * A241717(n-1), n >= 1.
EXAMPLE
With the positive terms written as an irregular triangle in which the row lengths are the terms of A011782 the sequence begins:
4;
12;
12, 36;
12, 36, 60, 84;
12, 36, 60, 84, 108, 132, 156, 180;
12, 36, 60, 84, 108, 132, 156, 180, 204, 228, 252, 276, 300, 324, 348, 372;
...
PROG
(GW-BASIC)
10 'a261695 First 2^z-1 terms:
20 z=6: defdbl a: for i=1 to z: for j=0 to 2^(i-1)-1: n=n+1: a(n)=4^i + 3*(2*j)^2: print a(n)-a(n-1); : next j: next i: end
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Sep 24 2015
STATUS
approved