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!)
A053235 Numbers n such that A053230(n) = 3. 8
158, 202, 263, 350, 387, 476, 567, 582, 701, 790, 879, 894, 926, 999, 1103, 1236, 1282, 1403, 1418, 1501, 1523, 1646, 1661, 1737, 1831, 1847, 1953, 2059, 2074, 2149, 2185, 2237, 2265, 2370, 2505, 2563, 2683, 2729, 2873, 2894, 2909, 3032, 3107, 3127 (list; graph; refs; listen; history; text; internal format)
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] = 3, i, print( )), i=1..1000);
MATHEMATICA
Position[Differences@ Select[Range[10^4], Less @@ DivisorSigma[1, # + {0, 1}] &], 3][[All, 1]] (* Michael De Vlieger, Nov 19 2019 *)
PROG
(Haskell)
import Data.List (elemIndices)
a053235 n = a053235_list !! (n-1)
a053235_list = map (+ 1) $ elemIndices 3 a053230_list
-- Reinhard Zumkeller, May 07 2012
CROSSREFS
Sequence in context: A048930 A130864 A045245 * A352349 A255351 A088728
KEYWORD
nonn
AUTHOR
Asher Auel, Jan 10 2000
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.)