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!)
A193422 Smallest number m such that A193358(m) = n. 3
0, 1, 4, 2, 10, 6, 18, 12, 28, 20, 40, 30, 54, 42, 70, 56, 88, 72, 108, 90, 130, 110, 154, 132, 180, 156, 208, 182, 238, 210, 270, 240, 304, 272, 340, 306, 378, 342, 418, 380, 460, 420, 504, 462, 550, 506, 598, 552, 648, 600, 700, 650, 754, 702, 810, 756 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
A193358(a(n)) = n and A193358(m) <> n for m < a(n).
LINKS
FORMULA
From Chai Wah Wu, Jun 07 2016: (Start)
G.f.: x^2*(1 + 3*x - 4*x^2 + 2*x^3 + x^4 - x^5)/((1 - x)^3*(1 + x)^2).
a(2*n) = n*(n-1) for n > 1.
a(2*n+1) = n*(n+3).
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5) for n > 7. (End)
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a193422 n = a193422_list !!(n-1)
a193422_list = map (fromJust . (`elemIndex` a193358_list)) [1..]
CROSSREFS
Sequence in context: A283943 A283942 A266418 * A357595 A160572 A213500
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Jul 27 2011
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)