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!)
A308339 Sphenic number indices of A215217. 1
21, 30, 49, 51, 75, 82, 96, 106, 120, 130, 133, 136, 141, 148, 152, 157, 161, 173, 177, 180, 186, 187, 189, 202, 207, 209, 213, 217, 221, 226, 236, 240, 242, 244, 248, 261, 264, 277, 285, 286, 294, 305, 306, 311, 317, 320, 322, 327, 333, 349, 355, 364, 368 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A215217 is a subsequence of A007304 (by definition). The index sequence is more compact.
LINKS
FORMULA
A215217(n) = A007304(a(n)).
EXAMPLE
For n = 3: a(3) = 49 and A215217(3) = 429 = A007304(49).
PROG
(Haskell)
twinLowX [] = []
twinLowX [_] = []
twinLowX (n : (m : ns))
| m == n + 1 = 1 : (map succ (twinLowX (m : ns)))
| otherwise = (map succ (twinLowX (m : ns)))
a308339 n = (twinLowX a007304_list) !! (n - 1)
-- Peter Dolland, May 31 2019
CROSSREFS
Sequence in context: A363609 A336357 A317772 * A186455 A318081 A276655
KEYWORD
nonn
AUTHOR
Peter Dolland, May 20 2019
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 24 13:00 EDT 2024. Contains 371945 sequences. (Running on oeis4.)