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.

Previous Showing 11-17 of 17 results.

A226579 Smallest number of integer-sided squares needed to tile a 6 X n rectangle.

Original entry on oeis.org

0, 6, 3, 2, 3, 5, 1, 5, 4, 3, 4, 6, 2, 6, 5, 4, 5, 7, 3, 7, 6, 5, 6, 8, 4, 8, 7, 6, 7, 9, 5, 9, 8, 7, 8, 10, 6, 10, 9, 8, 9, 11, 7, 11, 10, 9, 10, 12, 8, 12, 11, 10, 11, 13, 9, 13, 12, 11, 12, 14, 10, 14, 13, 12, 13, 15, 11, 15, 14, 13, 14, 16, 12, 16, 15, 14
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2013

Keywords

Examples

			a(13) = 6:
._._._._._._._._._._._._._.
|           |       |     |
|           |       |     |
|           |       |_____|
|           |_______|     |
|           |   |   |     |
|___________|___|___|_____|
		

Crossrefs

Row m=6 of A113881, A219158.

Programs

  • Maple
    a:= n-> `if`(n=1, 6, iquo(n, 6, 'r') +[0, 4, 3, 2, 3, 5][r+1]):
    seq(a(n), n=0..100);
  • Mathematica
    Join[{0,6},LinearRecurrence[{0,1,1,0,-1},{3,2,3,5,1},80]] (* Harvey P. Dale, Jun 03 2014 *)

Formula

G.f.: x*(2*x^5-6*x^3-4*x^2+3*x+6)/(x^5-x^3-x^2+1).
a(n) = 1 + a(n-6) for n>7.

A226580 Smallest number of integer-sided squares needed to tile a 7 X n rectangle.

Original entry on oeis.org

0, 7, 5, 5, 5, 5, 5, 1, 7, 6, 6, 6, 6, 6, 2, 8, 7, 7, 7, 7, 7, 3, 9, 8, 8, 8, 8, 8, 4, 10, 9, 9, 9, 9, 9, 5, 11, 10, 10, 10, 10, 10, 6, 12, 11, 11, 11, 11, 11, 7, 13, 12, 12, 12, 12, 12, 8, 14, 13, 13, 13, 13, 13, 9, 15, 14, 14, 14, 14, 14, 10, 16, 15, 15, 15
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2013

Keywords

Examples

			a(15) = 8:
._._._._._._._._._._._._._._._.
|             |       |       |
|             |       |       |
|             |       |       |
|             |_______|_______|
|             |     |     |   |
|             |     |     |___|
|_____________|_____|_____|_|_|
		

Crossrefs

Row m=7 of A113881, A219158.

Programs

  • Maple
    a:= n-> `if`(n=1, 7, iquo(n, 7, 'r') +[0, 6, 5$5][r+1]):
    seq(a(n), n=0..100);
  • Mathematica
    CoefficientList[Series[x*(x^8 - x^7 - 4*x^6 - 2*x + 7)/(x^8 - x^7 - x + 1), {x, 0, 100}], x] (* Wesley Ivan Hurt, Jan 15 2017 *)

Formula

G.f.: x*(x^8-x^7-4*x^6-2*x+7)/(x^8-x^7-x+1).
a(n) = 1 + a(n-7) for n>8.

A226581 Smallest number of integer-sided squares needed to tile an 8 X n rectangle.

Original entry on oeis.org

0, 8, 4, 5, 2, 5, 4, 7, 1, 7, 5, 6, 3, 6, 5, 8, 2, 8, 6, 7, 4, 7, 6, 9, 3, 9, 7, 8, 5, 8, 7, 10, 4, 10, 8, 9, 6, 9, 8, 11, 5, 11, 9, 10, 7, 10, 9, 12, 6, 12, 10, 11, 8, 11, 10, 13, 7, 13, 11, 12, 9, 12, 11, 14, 8, 14, 12, 13, 10, 13, 12, 15, 9, 15, 13, 14, 11
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2013

Keywords

Examples

			a(17) = 8:
._._._._._._._._._._._._._._._._._.
|               |       |         |
|               |       |         |
|               |       |         |
|               |_______|         |
|               |       |_________|
|               |       |     |   |
|               |       |     |___|
|_______________|_______|_____|_|_|
		

Crossrefs

Row m=8 of A113881, A219158.

Programs

  • Maple
    a:= n-> `if`(n=1, 8, iquo(n, 8, 'r') +[0, 6, 4, 5, 2, 5, 4, 7][r+1]):
    seq(a(n), n=0..100);
  • Mathematica
    LinearRecurrence[{1,0,0,0,0,0,0,1,-1},{0,8,4,5,2,5,4,7,1,7,5},80] (* Harvey P. Dale, Sep 07 2016 *)

Formula

G.f.: x*(2*x^9-2*x^8-6*x^7+3*x^6-x^5+3*x^4-3*x^3+x^2-4*x+8) / (x^9-x^8-x+1).
a(n) = 1 + a(n-8) for n>9.

A226582 Smallest number of integer-sided squares needed to tile a 9 X n rectangle.

Original entry on oeis.org

0, 9, 6, 3, 6, 6, 3, 6, 7, 1, 6, 7, 4, 7, 7, 4, 7, 8, 2, 7, 8, 5, 8, 8, 5, 8, 9, 3, 8, 9, 6, 9, 9, 6, 9, 10, 4, 9, 10, 7, 10, 10, 7, 10, 11, 5, 10, 11, 8, 11, 11, 8, 11, 12, 6, 11, 12, 9, 12, 12, 9, 12, 13, 7, 12, 13, 10, 13, 13, 10, 13, 14, 8, 13, 14, 11, 14
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2013

Keywords

Examples

			a(19) = 7:
._._._._._._._._._._._._._._._._._._._.
|                 |         |         |
|                 |         |         |
|                 |         |         |
|                 |         |         |
|                 |_________|_________|
|                 |       |       |   |
|                 |       |       |___|
|                 |       |       |   |
|_________________|_______|_______|___|
		

Crossrefs

Row m=9 of A113881, A219158.

Programs

  • Maple
    a:= n-> `if`(n=1, 9, iquo(n, 9, 'r')+[0, 5, 6, 3, 6, 6, 3, 6, 7][r+1]):
    seq(a(n), n=0..100);

Formula

G.f.: x*(4*x^10-4*x^9-6*x^8+x^7+3*x^6-3*x^5+3*x^3-3*x^2-3*x+9) / (x^10-x^9-x+1).
a(n) = 1 + a(n-9) for n>10.

A226583 Smallest number of integer-sided squares needed to tile a 10 X n rectangle.

Original entry on oeis.org

0, 10, 5, 6, 4, 2, 4, 6, 5, 6, 1, 6, 5, 7, 5, 3, 5, 7, 6, 7, 2, 7, 6, 8, 6, 4, 6, 8, 7, 8, 3, 8, 7, 9, 7, 5, 7, 9, 8, 9, 4, 9, 8, 10, 8, 6, 8, 10, 9, 10, 5, 10, 9, 11, 9, 7, 9, 11, 10, 11, 6, 11, 10, 12, 10, 8, 10, 12, 11, 12, 7, 12, 11, 13, 11, 9, 11, 13, 12
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2013

Keywords

Examples

			a(22) = 6:
._._._._._._._._._._._._._._._._._._._._._._.
|                   |           |           |
|                   |           |           |
|                   |           |           |
|                   |           |           |
|                   |           |           |
|                   |___________|___________|
|                   |       |       |       |
|                   |       |       |       |
|                   |       |       |       |
|___________________|_______|_______|_______|
		

Crossrefs

Row m=10 of A113881, A219158.

Programs

  • Maple
    a:= n-> `if`(n in [1, 2], 10/n, iquo(n, 10, 'r')+
        [0, 5, 4, 6, 4, 2, 4, 6, 5, 6][r+1]):
    seq(a(n), n=0..100);

Formula

G.f.: x*(x^8+5*x^7-x^6-10*x^5-4*x^4-x^3-4*x^2+5*x+10) / (x^7-x^5-x^2+1).
a(n) = 1 + a(n-10) for n>12.

A348020 a(n) is the minimum number of unit resistors in a circuit with resistance R = A007305(n)/A007306(n).

Original entry on oeis.org

1, 2, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8
Offset: 1

Views

Author

Hugo Pfoertner, Oct 14 2021

Keywords

Comments

For small values of n, the circuits are planar and correspond to the tiling of rectangles by squares. See A338573 for more information and examples.
The earliest nonplanar deviation occurs at a(3173) corresponding to R = 115/204 needing 11 instead of 12 resistors.

Crossrefs

First 31 terms coincide with A070941.
A338579 can be used for a lookup of the position for a given rational R.

A340920 a(n) is the number of distinct resistances that can be produced from a planar circuit with exactly n unit resistors.

Original entry on oeis.org

1, 1, 2, 4, 9, 23, 57, 151, 427, 1263, 3807, 11549, 34843, 104459, 311317, 928719, 2776247, 8320757, 24967341, 74985337
Offset: 0

Views

Author

Hugo Pfoertner and Rainer Rosenthal, Feb 14 2021

Keywords

Examples

			a(10) = 3807, whereas A337517(10) = 3823. The difference of 16 resistances results from the 15 terms of A338601/A338602 and the resistance 34/27 not representable by a planar network of 10 resistors, whereas it (but not 27/34) can be represented by a nonplanar network of 10 resistors.
		

Crossrefs

Programs

Formula

a(n) = A337517(n) for n <= 9, a(n) < A337517(n) for n >= 10.

Extensions

a(19) from Hugo Pfoertner, Mar 15 2021
Previous Showing 11-17 of 17 results.