login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A220347
Permutation of natural numbers: a(1) = 1, a(triangular(n)) = (2*a(n))-1, a(nontriangular(n)) = 2*n, where triangular = A000217, nontriangular = A014132.
4
1, 2, 3, 4, 6, 5, 8, 12, 10, 7, 16, 24, 20, 14, 11, 32, 48, 40, 28, 22, 9, 64, 96, 80, 56, 44, 18, 15, 128, 192, 160, 112, 88, 36, 30, 23, 256, 384, 320, 224, 176, 72, 60, 46, 19, 512, 768, 640, 448, 352, 144, 120, 92, 38, 13, 1024, 1536, 1280, 896, 704, 288
OFFSET
1,2
COMMENTS
Inverse permutation of A183079, when seen as a flattened sequence.
FORMULA
a(1) = 1; for n > 1: if A010054(n) = 1 [i.e., if n is triangular], then a(n) = (2*a(A002024(n)))-1, otherwise a(n) = 2*a(A083920(n)). - Antti Karttunen, May 18 2015
MATHEMATICA
a[n_] := a[n] = With[{r = (-1 + Sqrt[8n + 1])/2}, Which[n <= 1, n, IntegerQ[r], 2 a[Floor[Sqrt[2n] + 1/2]] - 1, True, 2 a[n - Floor[r]]]];
Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Dec 05 2021 *)
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a220347 = (+ 1) . fromJust . (`elemIndex` a183079_list)
(Scheme, with memoizing definec-macro)
(definec (A220347 n) (cond ((<= n 1) n) ((zero? (A010054 n)) (* 2 (A220347 (A083920 n)))) (else (+ -1 (* 2 (A220347 (A002024 n)))))))
;; Antti Karttunen, May 18 2015
CROSSREFS
Inverse: A183079.
Cf. also a similar permutation A257797 from which this differs for the first time at n=15, where a(15) = 11, while A257797(15) = 9.
Sequence in context: A151942 A054582 A257797 * A099884 A191446 A230764
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 12 2012
EXTENSIONS
Old name moved to comments by Antti Karttunen, May 18 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 10:01 EDT 2024. Contains 376097 sequences. (Running on oeis4.)