[go: up one dir, main page]

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!)
Revision History for A246375 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A246375 Permutation of natural numbers: a(1) = 1, a(2n) = 2*a(n), a(2n+1) = A003961(1+a(n)). [Where A003961(n) shifts the prime factorization of n one step towards larger primes].
(history; published version)
#13 by N. J. A. Sloane at Mon Sep 01 11:46:54 EDT 2014
STATUS

proposed

approved

#12 by Antti Karttunen at Sun Aug 31 15:42:09 EDT 2014
STATUS

editing

proposed

#11 by Antti Karttunen at Sat Aug 30 13:12:36 EDT 2014
COMMENTS

This can be viewed as yet another "entanglement permutation" where the two complementary pairs to be interwoven together are even and odd numbers (A005843/A005408) which are entangled with the complementary pair even numbers (taken straight) and odd numbers in the order they appear in A003961: (A005843/A003961). Sequence A163511 has almost the same definition, but its domain starts from 0, which results a different permutation.

CROSSREFS

Cf. A000035, A003961, A005408, A005843.

#10 by Antti Karttunen at Fri Aug 29 17:56:56 EDT 2014
FORMULA

Other identities. For all n >= 1 the following holds:

#9 by Antti Karttunen at Fri Aug 29 17:55:20 EDT 2014
FORMULA

Other identities. For all n >= 1:

A000035(a(n)) = A000035(n). [Like A005940 & A005941, this also preserves the parity].

CROSSREFS

Cf. A003961Similar or related permutations: A005940, A005941, A163511, A245606, A246378, A246379.

Cf. A000035, A003961.

#8 by Antti Karttunen at Fri Aug 29 17:50:35 EDT 2014
FORMULA

As a composition of related permutations:

a(n) = A246379(A246378(n)).

CROSSREFS

Cf. A003961, A163511, A245606, A246378, A246379.

#7 by Antti Karttunen at Wed Aug 27 17:40:07 EDT 2014
PROG

(PARI)

default(primelimit, (2^31)+(2^30));

A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ Using code of Michel Marcus

A246375(n) = if(1==n, 1, if(!(n%2), 2*A246375(n/2), A003961(1+A246375((n-1)/2))));

for(n=1, 16384, write("b246375.txt", n, " ", A246375(n)));

#6 by Antti Karttunen at Wed Aug 27 17:36:31 EDT 2014
LINKS

<a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>

#5 by Antti Karttunen at Wed Aug 27 17:36:04 EDT 2014
LINKS

Antti Karttunen, <a href="/A246375/b246375.txt">Table of n, a(n) for n = 1..16384</a>

#4 by Antti Karttunen at Wed Aug 27 16:08:13 EDT 2014
CROSSREFS

Cf. A003961, A163511, A245606, A246365, A246367.

Discussion
Wed Aug 27 16:08
Antti Karttunen: A246365, A246367 should go to forthcoming A246379 instead.

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 29 14:29 EDT 2024. Contains 375517 sequences. (Running on oeis4.)