cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A165634 Start with x=1 and repeat: if x is a prime number then (append i and then x, with x=prime(i)) else (only append x), continue with x:=x+1.

Original entry on oeis.org

1, 1, 2, 2, 3, 4, 3, 5, 6, 4, 7, 8, 9, 10, 5, 11, 12, 6, 13, 14, 15, 16, 7, 17, 18, 8, 19, 20, 21, 22, 9, 23, 24, 25, 26, 27, 28, 10, 29, 30, 11, 31, 32, 33, 34, 35, 36, 12, 37, 38, 39, 40, 13, 41, 42, 14, 43, 44, 45, 46, 15, 47, 48, 49, 50, 51, 52, 16, 53, 54, 55, 56, 57, 58, 17, 59
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 23 2009

Keywords

Comments

All positive integers occur exactly twice: A095117 and A095116 give positions of first and second occurrences.

Examples

			1,(1,2),(2,3),4,(3,5),6,(4,7),8,9,10,(5,11),12, ... .
		

Crossrefs

Programs

  • Haskell
    a165634 n = a165634_list !! (fromInteger n - 1)
    a165634_list = concatMap (\x ->
       if a010051 x == 1 then [a049084 x, x] else [x]) [1..]
    -- Reinhard Zumkeller, Apr 17 2012