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!)
A192302 0-sequence of reduction of the upper Wythoff sequence by x^2 -> x+1. 2
2, 2, 9, 19, 45, 90, 180, 340, 639, 1185, 2137, 3842, 6868, 12052, 21139, 36596, 63436, 109825, 188078, 322446, 548220, 933825, 1590585, 2688667, 4551372, 7704396, 12956146, 21817835, 36549185, 61338443 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A192232 for definition of "k-sequence of reduction of [sequence] by [substitution]".
LINKS
MATHEMATICA
c[n_] :=
n + Floor[n*GoldenRatio]; (* Upper Wythoff sequence, A001950 *)
Table[c[n], {n, 1, 15}]
q[x_] := x + 1;
p[0, x_] := 2; p[n_, x_] := p[n - 1, x] + (x^n)*c[n + 1]
reductionRules = {x^y_?EvenQ -> q[x]^(y/2),
x^y_?OddQ -> x q[x]^((y - 1)/2)};
t = Table[
Last[Most[
FixedPointList[Expand[#1 /. reductionRules] &, p[n, x]]]], {n, 0,
30}]
Table[Coefficient[Part[t, n], x, 0], {n, 1, 30}] (* A192302 *)
Table[Coefficient[Part[t, n], x, 1], {n, 1, 30}] (* A192303 *)
(* by Peter J. C. Moses, Jun 20 2011 *)
CROSSREFS
Sequence in context: A224244 A007024 A019223 * A128535 A180753 A220971
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 27 2011
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 March 28 08:00 EDT 2024. Contains 371235 sequences. (Running on oeis4.)