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!)
A297164 Permutation of nonnegative integers: a(n) = A156552(A005940(1+n)-1). 5
0, 1, 2, 3, 4, 7, 8, 5, 6, 17, 16, 23, 64, 65, 10, 9, 32, 19, 128, 129, 512, 67, 256, 47, 24, 4097, 20, 4099, 32768, 79, 1024, 11, 18, 31, 14, 29, 4096, 2049, 66, 515, 514, 263, 65536, 2053, 8388608, 524289, 16384, 87, 16777216, 2097153, 70, 524291, 17179869184, 287, 524288, 1037, 8388610, 289, 134217728, 1071, 520, 97, 38, 15, 12, 257, 8192, 63 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Note the indexing: although the domain starts from 1, the range includes also zero.
LINKS
FORMULA
a(n) = A156552(A005940(1+n)-1).
PROG
(Scheme) (define (A297164 n) (A156552 (+ -1 (A005940 (+ 1 n)))))
(PARI)
A005940(n) = { my(p=2, t=1); n--; until(!n\=2, if(n%2, t*=p, p=nextprime(p+1))); t };
A156552(n) = {my(f = factor(n), p, p2 = 1, res = 0); for(i = 1, #f~, p = 1 << (primepi(f[i, 1]) - 1); res += (p * p2 * (2^(f[i, 2]) - 1)); p2 <<= f[i, 2]); res}; \\ From A156552
A297164(n) = A156552(A005940(1+n)-1); \\ Antti Karttunen, Feb 27 2022
CROSSREFS
Inverse: A297163.
Cf. also A297166, A341520, A351960.
Sequence in context: A351490 A054426 A054424 * A207800 A109436 A177045
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 05 2018
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)