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.

A081716 Smallest number x such that phi(x)=A000010(x) has exactly n different decimal digits.

Original entry on oeis.org

2, 11, 103, 1033, 10247, 102359, 1023487, 10234759, 102345979, 1023475969
Offset: 1

Views

Author

Labos Elemer, Apr 04 2003

Keywords

Examples

			phi applied to the sequence gives: 1, 10, 102, 1032, 10246, 102358, 1023486, 10234758, 102345978, ...
		

Crossrefs

Programs

  • Mathematica
    f[x_] := Length[Union[IntegerDigits[x]]]
    t=Table[0, {10}];
    Do[s=f[n]; If[PrimeQ[n]&&s<11&&t[[s]]==0,
    t[[s]]=n], {n, 1, 10000000000}];

Extensions

a(10) from Donovan Johnson, Feb 05 2010