proposed
approved
proposed
approved
editing
proposed
The Heinz numbers of the partitions that have no gaps. The Heinz number of a partition p = [p_1, p_2, ..., p_r] is defined as Product_{j=1..r} (p_j-th prime, j=1...r) (concept used by _Alois P. Heinz _ in A215366 as an "encoding" of a partition). Example: (i) 18 (= 2*3*3) is in the sequence because it is the Heinz number of the partition [1,2,2]; (ii) 10 (= 2*5) is not in the sequence because it is the Heinz number of the partition [1,3]. - Emeric Deutsch, Oct 02 2015
proposed
editing
editing
proposed
The Heinz numbers of the partitions that have no gaps. The Heinz number of a partition p = [p_1, p_2, ..., p_r] is defined as Product(p_j-th prime, j=1...r) (concept used by Alois P. Heinz in A215366 as an "encoding" of a partition). Example: (i) 18 (= 2*3*3) is in the sequence because it is the Heinz number of the partition [1,2,2]; (ii) 10 (= 2*5) is not in the sequence because it is the Heinz number of the partition [1,3]. - Emeric Deutsch, Oct 02 2015
approved
editing
editing
approved
Essentially the same as A066311. [From _- _R. J. Mathar_, Sep 23 2008]
T. D. Noe, <a href="/A073491/b073491.txt">Table of n, a(n) for n = 1..1000</a>
(PARI) is(n)=my(f=factor(n)[, 1]); for(i=2, #f, if(precprime(f[i]-1)>f[i-1], return(0))); 1 \\ Charles R Greathouse IV, Apr 28 2015
approved
editing
editing
approved
(Haskell)
a073491 n = a073491_list !! (n-1)
a073491_list = filter ((== 0) . a073490) [1..]
-- Reinhard Zumkeller, Dec 20 2013
approved
editing
ok[n_] := (p = FactorInteger[n][[All, 1]]; PrimePi[Last@p] - PrimePi[First@p] == Length[p] - 1); Select[Range[135], ok] (* From _Jean-François Alcover, _, Apr 29 2011 *)