login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A251361 Numbers n such that pi(n) is the concatenation of distinct prime factors of n, in decreasing order. 2
4, 100, 31509, 7560625 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Next term must be greater than 4*10^8.
Numbers n such that A000720(n) = A084317(n). - Michel Marcus, Dec 06 2014.
LINKS
EXAMPLE
4 is in the sequence since 4=2^2 and pi(4)=2,
100 is in the sequence since 100=2^2*5^2 and pi(100)=25,
31509 is in the sequence since 31509=3^4*389 and pi(31509)=3389, and
7560625 is in the sequence since 7560625=5^4*12097 and pi(7560625)=512097.
MATHEMATICA
a251361[n_Integer] := Select[Range[n], PrimePi[#] == FromDigits[
Flatten@ IntegerDigits[First@ Transpose@ FactorInteger[#]]] &]; a251361[10^6] (* Michael De Vlieger, Dec 03 2014 *)
PROG
(PARI) is(n)=eval(fold((x, y)->Str(x, y), factor(n)[, 1]))==primepi(n) \\ Charles R Greathouse IV, Dec 06 2014
CROSSREFS
Sequence in context: A324096 A202989 A343183 * A260025 A363815 A218884
KEYWORD
nonn,base,more
AUTHOR
Jahangeer Kholdi, Dec 02 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)