cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-5 of 5 results.

A181815 a(n) = largest integer such that, when any of its divisors divides A025487(n), the quotient is a member of A025487.

Original entry on oeis.org

1, 2, 4, 3, 8, 6, 16, 12, 5, 32, 9, 24, 10, 64, 18, 48, 20, 128, 36, 15, 96, 7, 27, 40, 256, 72, 30, 192, 14, 54, 80, 512, 144, 60, 384, 28, 108, 25, 160, 1024, 45, 288, 21, 81, 120, 768, 56, 216, 50, 320, 2048, 90, 576, 11, 42, 162, 240, 1536, 112, 432, 100, 640, 4096, 180, 1152
Offset: 1

Views

Author

Matthew Vandermast, Nov 30 2010

Keywords

Comments

A permutation of the natural numbers.
The number of divisors of a(n) equals the number of ordered factorizations of A025487(n) as A025487(j)*A025487(k). Cf. A182762.
From Antti Karttunen, Dec 28 2019: (Start)
Rearranges terms of A108951 into ascending order, as A108951(a(n)) = A025487(n).
The scatter plot looks like a curtain of fractal spray, which is typical for many of the so-called "entanglement permutations". Indeed, according to the terminology I use in my 2016-2017 paper, this sequence is obtained by entangling the complementary pair (A329898, A330683) with the complementary pair (A005843, A003961), which gives the following implicit recurrence: a(A329898(n)) = 2*a(n) and a(A330683(n)) = A003961(a(n)). An explicit form is given in the formula section.
(End)

Examples

			For any divisor d of 9 (d = 1, 3, 9), 36/d (36, 12, 4) is a member of A025487. 9 is the largest number with this relationship to 36; therefore, since 36 = A025487(11), a(11) = 9.
		

Crossrefs

If this sequence is considered the "primorial deflation" of A025487(n) (see first formula), the primorial inflation of n is A108951(n), and the primorial inflation of A025487(n) is A181817(n).
A181820(n) is another mapping from the members of A025487 to the positive integers.

Programs

  • Mathematica
    (* First, load the program at A025487, then: *)
    Map[If[OddQ@ #, 1, Times @@ Prime@ # &@ Rest@ NestWhile[Append[#1, {#3, Drop[#, -LengthWhile[Reverse@ #, # == 0 &]] &[#2 - PadRight[ConstantArray[1, #3], Length@ #2]]}] & @@ {#1, #2, LengthWhile[#2, # > 0 &]} & @@ {#, #[[-1, -1]]} &, {{0, TakeWhile[If[# == 1, {0}, Function[g, ReplacePart[Table[0, {PrimePi[g[[-1, 1]]]}], #] &@ Map[PrimePi@ First@ # -> Last@ # &, g]]@ FactorInteger@ #], # > 0 &]}}, And[FreeQ[#[[-1, -1]], 0], Length[#[[-1, -1]] ] != 0] &][[All, 1]] ] &, Union@ Flatten@ f@ 6] (* Michael De Vlieger, Dec 28 2019 *)
  • PARI
    A181815(n) = A329900(A025487(n)); \\ Antti Karttunen, Dec 24 2019

Formula

If A025487(n) is considered in its form as Product A002110(i)^e(i), then a(n) = Product p(i)^e(i). If A025487(n) is instead considered as Product p(i)^e(i), then a(n) = Product (p(i)/A008578(i))^e(i).
a(n) = A122111(A181820(n)). - Matthew Vandermast, May 21 2012
From Antti Karttunen, Dec 24-29 2019: (Start)
a(n) = Product_{i=1..A051282(n)} A000040(A304886(i)).
a(n) = A329900(A025487(n)) = A319626(A025487(n)).
a(n) = A163511(A329905(n)).
For n > 1, if A330682(n) = 1, then a(n) = A003961(a(A329904(n))), otherwise a(n) = 2*a(A329904(n)).
A252464(a(n)) = A329907(n).
A330690(a(n)) = A050378(n).
a(A306802(n)) = A329902(n).
(End)

A329906 a(0) = 1; a(1) = 2; after which a(2n) = A329898(a(n)), a(2n+1) = A330683(a(n)).

Original entry on oeis.org

1, 2, 3, 4, 5, 11, 6, 9, 7, 23, 15, 38, 8, 20, 13, 22, 10, 44, 30, 110, 19, 69, 49, 128, 12, 41, 27, 72, 17, 43, 29, 54, 14, 79, 56, 272, 37, 181, 136, 482, 26, 118, 86, 307, 61, 208, 156, 424, 16, 73, 52, 190, 34, 123, 89, 242, 24, 77, 55, 147, 36, 93, 66, 114, 18, 131, 97, 596, 68, 416, 323, 1448, 48, 286, 218, 990, 164, 711
Offset: 0

Views

Author

Antti Karttunen, Dec 24 2019

Keywords

Comments

Note the indexing: domain begins from zero, but the range does not include it.

Examples

			This irregular table can be represented as a binary tree. Each child to the left is obtained by applying A329898 the parent, and each child to the right is obtained by applying A330683 to the parent:
                                      1
                                      |
                   ...................2...................
                  3                                       4
        5......../ \........11                  6......../ \........9
       / \                 / \                 / \                 / \
      /   \               /   \               /   \               /   \
     /     \             /     \             /     \             /     \
    7       23         15       38          8       20         13       22
  10 44   30  110    19  69    49 128     12 41   27  72     17  43   29  54
etc.
		

Crossrefs

Cf. A329905 (inverse permutation).

Programs

Formula

a(0) = 1; a(1) = 2; after which a(2n) = A329898(a(n)), a(2n+1) = A330683(a(n)).
a(n) = A329901(A163511(n)).

A366377 Number of branching factorizations of the primorial inflation of n.

Original entry on oeis.org

0, 1, 3, 2, 19, 11, 207, 5, 62, 113, 3211, 45, 64383, 1709, 911, 15, 1581259, 345, 45948927, 645, 17753, 33797, 1541641771, 195, 9332, 822821, 2405, 12405, 58645296063, 6525, 2494091717899, 51, 428309, 23765093, 223031, 1890, 117258952478847, 793795349, 12293957, 3585, 6038838138717931, 154605, 338082244882740543, 296805
Offset: 1

Views

Author

Antti Karttunen, Dec 31 2023

Keywords

Comments

Conjecture: Sequence is injective (no value occurs more than once). If true, then also the conjecture given in A277120 is correct. See also A366884.

Crossrefs

Permutation of A366884.

Programs

Formula

a(n) = A277120(A108951(n)).
a(n) = A366884(A329901(n)).
For n >= 1, a(2^n) = A007317(n), a(A000040(n)) = A052886(n).

A330690 Number of ways to factor A108951(n) into "Fermi-Dirac primes" (A050376), where A108951 is fully multiplicative with a(prime(k)) = k-th primorial.

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 1, 2, 4, 2, 1, 2, 1, 2, 4, 4, 1, 4, 1, 2, 4, 2, 1, 4, 8, 2, 4, 2, 1, 4, 1, 4, 4, 2, 8, 8, 1, 2, 4, 4, 1, 4, 1, 2, 4, 2, 1, 4, 16, 8, 4, 2, 1, 8, 8, 4, 4, 2, 1, 8, 1, 2, 4, 6, 8, 4, 1, 2, 4, 8, 1, 8, 1, 2, 8, 2, 16, 4, 1, 4, 16, 2, 1, 8, 8, 2, 4, 4, 1, 8, 16, 2, 4, 2, 8, 6, 1, 16, 4, 16, 1, 4, 1, 4, 8
Offset: 1

Views

Author

Antti Karttunen, Dec 28 2019

Keywords

Comments

a(64) = 6 is the first term which is not a power of 2.

Crossrefs

Programs

Formula

a(n) = A050377(A108951(n)).
a(n) = A050378(A329901(n)).

A341352 Inverse permutation to A341351.

Original entry on oeis.org

1, 2, 4, 9, 3, 22, 54, 6, 114, 246, 13, 488, 11, 5, 948, 1809, 29, 20, 3327, 66, 6020, 10624, 8, 18246, 38, 140, 30726, 43, 290, 51148, 84074, 17, 93, 135598, 570, 216398, 340886, 15, 72, 529051, 7, 814237, 186, 1090, 1240172, 147, 2057, 376, 1874464, 36, 2817289
Offset: 1

Views

Author

Keywords

Crossrefs

Formula

a(n) = A329901(A064216(n)).
Showing 1-5 of 5 results.