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-3 of 3 results.

A070081 Middle side of integer triangles [A070080(n) <= a(n) <= A070082(n)], sorted by perimeter, sides lexicographically ordered.

Original entry on oeis.org

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

Views

Author

Reinhard Zumkeller, May 05 2002

Keywords

Crossrefs

Programs

  • Mathematica
    m = 55 (* max perimeter *);
    sides[per_] := Select[Reverse /@ IntegerPartitions[per, {3}, Range[ Ceiling[per/2]]], #[[1]] < per/2 && #[[2]] < per/2 && #[[3]] < per/2&];
    triangles = DeleteCases[Table[sides[per], {per, 3, m}], {}] // Flatten[#, 1]& // SortBy[Total[#] m^3 + #[[1]] m^2 + #[[2]] m + #[[1]]&];
    triangles[[All, 2]] (* Jean-François Alcover, Jul 09 2017 *)

Formula

a(n) = A070083(n) - A070080(n) - A070082(n).

A069597 Smallest prime in which the n-th significant digit is a 0.

Original entry on oeis.org

101, 1009, 10007, 100003, 1000003, 10000019, 100000007, 1000000007, 10000000019, 100000000003, 1000000000039, 10000000000037, 100000000000031, 1000000000000037, 10000000000000061, 100000000000000003
Offset: 2

Views

Author

Amarnath Murthy, Mar 25 2002

Keywords

Crossrefs

Programs

  • Maple
    seq(nextprime(10^j),j=2..32);

Extensions

More terms from Sascha Kurz, Mar 28 2002

A069596 Smallest prime in which the n-th significant digit is an 8.

Original entry on oeis.org

83, 809, 8009, 80021, 800011, 8000009, 80000023, 800000011, 8000000011, 80000000021, 800000000047, 8000000000009, 80000000000027, 800000000000017, 8000000000000011, 80000000000000011, 800000000000000119
Offset: 2

Views

Author

Amarnath Murthy, Mar 25 2002

Keywords

Crossrefs

Programs

  • Maple
    seq(nextprime(8*10^j),j=1..32);
  • Mathematica
    NextPrime/@(8 10^Range[20])  (* Harvey P. Dale, Feb 04 2011 *)

Extensions

More terms from Sascha Kurz, Mar 28 2002
Showing 1-3 of 3 results.