login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A053233
Numbers n such that A053230(n) = 2.
8
3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 85
OFFSET
1,1
LINKS
MAPLE
with(numtheory): f := [seq( `if`((sigma(i+1) > sigma(i)), i, print( )), i=1..5000)];
seq( `if`(f[i+1] - f[i] = 2, i, print( )), i=1..100);
MATHEMATICA
Position[Differences@ Select[Range[170], Less @@ DivisorSigma[1, # + {0, 1}] &], 2][[All, 1]] (* Michael De Vlieger, Nov 19 2019 *)
PROG
(Haskell)
import Data.List (elemIndices)
a053233 n = a053233_list !! (n-1)
a053233_list = map (+ 1) $ elemIndices 2 a053230_list
-- Reinhard Zumkeller, May 07 2012
KEYWORD
nonn
AUTHOR
Asher Auel, Jan 10 2000
STATUS
approved