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.

Showing 1-4 of 4 results.

A192524 (A192523)/2.

Original entry on oeis.org

1, 2, 5, 12, 14, 33, 35, 41, 82, 90, 96, 98, 104, 122, 223, 229, 243, 245, 261, 269, 285, 287, 293, 311, 365, 552, 572, 622, 628, 646, 660, 668, 670, 684, 686, 726, 728, 734, 756, 774, 782, 806, 852, 854, 860, 878, 932, 1094, 1539, 1553, 1559, 1601, 1633
Offset: 1

Views

Author

Clark Kimberling, Jul 03 2011

Keywords

Comments

This sequence is also the monotonic ordering of set S generated by these rules: if x and y are in S then 4xy-x-y is in S, and 1 is in S. (See A192524 for a discussion of such sequences.)

Crossrefs

Programs

A192473 Coefficient of x in the reduction by x^2->x+1 of the polynomial p(n,x)=1+x^n+x^(2n+2).

Original entry on oeis.org

4, 9, 23, 58, 149, 385, 1000, 2605, 6799, 17766, 46457, 121537, 318044, 832417, 2178919, 5703874, 14931949, 39090753, 102338336, 267921061, 701419679, 1836329614, 4807555633, 12586315393, 32951355124, 86267692665, 225851630135
Offset: 1

Views

Author

Clark Kimberling, Jul 01 2011

Keywords

Comments

For an introduction to reductions of polynomials by substitutions such as x^2->x+1, see A192232.

Examples

			The first four polynomials p(n,x) and their reductions are as follows:
p(1,x)=1+x+x^4 -> 3+4x
p(2,x)=1+x^2+x^6 -> 7+9x
p(3,x)=1+x^3+x^8 -> 15+23x
p(4,x)=1+x^4+x^10 -> 37+58x.
From these, read
A192472=(3,7,15,37,...) and A192473=(4,9,23,58,...)
		

Crossrefs

Programs

Formula

Conjectures from Colin Barker, Jun 07 2019: (Start)
G.f.: x*(4 - 7*x - x^2 + x^3) / ((1 - 3*x + x^2)*(1 - x - x^2)).
a(n) = 4*a(n-1) - 3*a(n-2) - 2*a(n-3) + a(n-4) for n>4.
(End)

A192529 Monotonic ordering of set S generated by these rules: if x and y are in S then 3xy-x-y is in S, and 2 is in S.

Original entry on oeis.org

2, 8, 38, 176, 188, 866, 878, 938, 4040, 4256, 4316, 4328, 4388, 4688, 19850, 19910, 20186, 20198, 21206, 21278, 21566, 21578, 21638, 21938, 23438, 92576, 92912, 97820, 97880, 98900, 99176, 99248, 99260, 99536, 99548, 100916, 100928, 100988
Offset: 1

Views

Author

Clark Kimberling, Jul 03 2011

Keywords

Crossrefs

Cf. A192472.

Programs

  • Mathematica
    start = {2}; f[x_, y_] := 3 x*y - x - y
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          1000000 &]];
    t = NestList[b, start, 12][[-1]] (* A192529 *)
    t/2 (* A192530 *)
    Table[t[[i]] - t[[i - 1]], {i, 2, Length[t]}] (* differences *)

A192526 (A192525)/2.

Original entry on oeis.org

1, 4, 19, 88, 94, 433, 439, 469, 2020, 2128, 2158, 2164, 2194, 2344, 9925, 9955, 10093, 10099, 10603, 10639, 10783, 10789, 10819, 10969, 11719, 46288, 46456, 48910, 48940, 49450, 49588, 49624, 49630, 49768, 49774, 50458, 50464, 50494, 52828
Offset: 1

Views

Author

Clark Kimberling, Jul 03 2011

Keywords

Comments

See A192525.

Crossrefs

Programs

Showing 1-4 of 4 results.