OFFSET
1,1
COMMENTS
If n is a composite number then A002808(n - pi(n) - 1) = n.
EXAMPLE
98 is in the sequence because 9*8=72 and 98 is 72nd composite number (98=A002808(9*8)).
MATHEMATICA
Do[h=IntegerDigits[n]; l=Length[h]; If[ !PrimeQ[n]&& n-PrimePi[n]-1==Product[h[[k]], {k, l}], v=Append[v, n]; Print[n]], {n, 100000}]
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Farideh Firoozbakht, Dec 06 2004
STATUS
approved