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!)
A276390 Bisection of A115716. 2
1, 3, 3, 11, 3, 11, 3, 43, 3, 11, 3, 43, 3, 11, 3, 171, 3, 11, 3, 43, 3, 11, 3, 171, 3, 11, 3, 43, 3, 11, 3, 683, 3, 11, 3, 43, 3, 11, 3, 171, 3, 11, 3, 43, 3, 11, 3, 683, 3, 11, 3, 43, 3, 11, 3, 171, 3, 11, 3, 43, 3, 11, 3, 2731, 3, 11, 3, 43, 3, 11, 3, 171 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
b:= proc(n) option remember; `if`(n=0, 1,
`if`(n::odd, 1, 4*b(n/2-1)-1))
end:
a:= n-> b(2*n):
seq(a(n), n=0..100); # Alois P. Heinz, Sep 07 2016
MATHEMATICA
b[n_] := b[n] = If[n == 0, 1, If[OddQ[n], 1, 4*b[n/2 - 1] - 1]];
a[n_] := b[2*n];
Table[a[n], {n, 0, 100}] (* Jean-François Alcover, Jun 12 2018, after Alois P. Heinz *)
CROSSREFS
Cf. A115716.
Sequence in context: A101326 A265391 A265390 * A178707 A036391 A283138
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 07 2016
EXTENSIONS
More terms from Alois P. Heinz, Sep 07 2016
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 April 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)