login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A127804 a(2n)=4^n, a(4*n+3)-(2^(4*n+3)+2^(2*n+1))=a(n). 5
1, 3, 4, 11, 16, 36, 64, 139, 256, 528, 1024, 2084, 4096, 8256, 16384, 32907, 65536, 131328, 262144, 524816, 1048576, 2098176, 4194304, 8390692, 16777216, 33558528, 67108864, 134225984, 268435456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums of number triangle A127803.
LINKS
FORMULA
Conjecture: a(n) = 1 + A187767(n+1). - Andrew Howroyd, Jun 02 2017
MAPLE
A127804 := proc(n)
add( A127803(n, k), k=0..n) ;
end proc: # R. J. Mathar, Feb 12 2024
MATHEMATICA
rows = 30;
A[n_, k_] := If[k <= n, If[n <= 2 k, 1/(2*2^n - 1), 0], 0];
T = Table[A[n, k], {n, 0, rows-1}, {k, 0, rows-1}] // Inverse;
a[n_] := T[[n+1]] // Total;
Table[a[n], {n, 0, rows-1}] (* Jean-François Alcover, Jul 03 2018 *)
CROSSREFS
Sequence in context: A001641 A374712 A007382 * A027306 A239024 A026676
KEYWORD
nonn
AUTHOR
Paul Barry, Jan 29 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 25 22:06 EDT 2024. Contains 374612 sequences. (Running on oeis4.)