OFFSET
1,1
REFERENCES
Bellamy, O. S.; Cadogan, C. C. Subsets of positive integers: their cardinality and maximality properties. Proceedings of the Tenth Southeastern Conference on Combinatorics, Graph Theory and Computing (Florida Atlantic Univ., Boca Raton, Fla., 1979), pp. 167--178, Congress. Numer., XXIII-XXIV, Utilitas Math., Winnipeg, Man., 1979. MR0561043 (82b:10006)
LINKS
Reinhard Zumkeller and Donovan Johnson, Table of n, a(n) for n = 1..2632 (terms up to a(2500) from Reinhard Zumkeller)
MATHEMATICA
nmax = 258280326 (* = last term = a(2632) *);
kmax = 100 (* = number of terms to compute *);
a36288[n_] := a36288[n] = If[n==1, 1, Total[Times @@@ FactorInteger[n]]+1];
a212813[n_] := Module[{i, k = n}, For[i = 1, i <= 4, i++, If[k == 8, Return[i-1]]; k = a36288[k]]; -1];
k = 0;
Do[If[a212813[n] == 3, k++; If[k > kmax, Break[]]; a[k] = n; Print["a(", k, ") = ", n]], {n, 1, nmax}];
Array[a, kmax] (* Jean-François Alcover, Aug 02 2018 *)
PROG
(Haskell)
import Data.List (elemIndices)
a212908 n = a212908_list !! (n-1)
a212908_list = map (+ 1) $ elemIndices 3 a212813_list
-- Reinhard Zumkeller, May 30 2012
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
N. J. A. Sloane, May 30 2012
EXTENSIONS
Keyword "full" added by Donovan Johnson, Jun 02 2012
STATUS
approved