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.

A208259 Numbers starting and ending with digit 1.

Original entry on oeis.org

1, 11, 101, 111, 121, 131, 141, 151, 161, 171, 181, 191, 1001, 1011, 1021, 1031, 1041, 1051, 1061, 1071, 1081, 1091, 1101, 1111, 1121, 1131, 1141, 1151, 1161, 1171, 1181, 1191, 1201, 1211, 1221, 1231, 1241, 1251, 1261, 1271, 1281, 1291, 1301, 1311, 1321, 1331
Offset: 1

Views

Author

Jaroslav Krizek, Feb 24 2012

Keywords

Comments

A000030(a(n)) = a(n) mod 10 = 1. - Reinhard Zumkeller, Jul 16 2014

Crossrefs

Intersection of A017281 and A131835. Union of A062332 and A208260.
Supersequence of A208262 (numbers with all divisors starting and ending with digit 1).
Cf. A062332 (primes starting and ending with a digit 1), A208260 (nonprime numbers starting and ending with a digit 1).

Programs

  • Haskell
    a208259 n = a208259_list !! (n-1)
    a208259_list = 1 : map ((+ 1) . (* 10)) a131835_list
    -- Reinhard Zumkeller, Jul 16 2014
  • Mathematica
    Select[Range[2000], First[IntegerDigits[#]] == 1 && Last[IntegerDigits[#]] == 1 &] (* Vladimir Joseph Stephan Orlovsky, Feb 26 2012 *)