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!)
A053240 n for which values not equal to 2 occur in the expansion of A053238. 8
5, 20, 21, 29, 34, 49, 50, 56, 57, 65, 70, 79, 80, 94, 99, 108, 109, 123, 132, 133, 145, 146, 154, 155, 170, 171, 177, 178, 198, 200, 201, 227, 230, 231, 239, 244, 253, 254, 259, 260, 274, 277, 278, 280, 289, 290, 304, 307, 308, 310, 327, 332, 340, 341, 347 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
with(numtheory): f := [seq( `if`((sigma(i) > sigma(i+1)), i, print( )), i=1..5000)];
seq( `if`(f[i+1] - f[i] <> 2, i, print( )), i=1..1000);
PROG
(Haskell)
import Data.List (findIndices)
a053240 n = a053240_list !! (n-1)
a053240_list = map (+ 1) $ findIndices (/= 2) a053238_list
-- Reinhard Zumkeller, Oct 16 2011
CROSSREFS
Sequence in context: A098047 A231276 A101728 * A034123 A338126 A360368
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 August 28 06:46 EDT 2024. Contains 375477 sequences. (Running on oeis4.)