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.

A246431 Smallest m such that A101403(m) = n.

Original entry on oeis.org

0, 2, 1, 3, 727
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 28 2014

Keywords

Comments

A101403(a(n)) = n;
No more terms based on first 10^6 terms of A101402.
No more terms based on the first 3*10^7 terms of A101402. - Robert G. Wilson v, Sep 19 2014

Examples

			a(5) = A129117(1) = 727.
		

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndex); import Data.Maybe (fromJust)
    a246431 = fromJust . (`elemIndex` a101403_list)