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.

A093025 Indices of terms in A093019 with value 5.

Original entry on oeis.org

7, 12, 26, 31, 45, 50, 69, 74, 88, 93, 106, 111, 125, 130, 149, 154, 168, 173, 187, 192, 205, 210, 229, 234, 248, 253, 267, 272, 286, 291, 309, 314, 328, 333, 347, 352, 366, 371, 385, 390, 408, 413, 427, 432, 446, 451, 465, 470, 489, 494, 502, 516, 521, 535
Offset: 1

Views

Author

Ray Chandler, Apr 03 2004

Keywords

Comments

Integers which require a following 5 to have a valid Luhn mod 10 check digit.

Examples

			12 is in the sequence because A093019(12)=5; 125 has a valid Luhn mod 10 check digit.
		

Crossrefs

Programs

  • Haskell
    a093025 n = a093025_list !! (n-1)
    a093025_list = filter ((== 5) . a093019) [0..]
    -- Reinhard Zumkeller, Nov 08 2014

Formula

A093019(a(n)) = 5. - Reinhard Zumkeller, Nov 08 2014

Extensions

Offset changed by Reinhard Zumkeller, Nov 08 2014