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-3 of 3 results.

A278245 Least number with the same prime signature as the n-th Fibonacci number: a(n) = A046523(A000045(n)).

Original entry on oeis.org

1, 1, 2, 2, 2, 8, 2, 6, 6, 6, 2, 144, 2, 6, 30, 30, 2, 120, 6, 210, 30, 6, 2, 10080, 12, 6, 210, 210, 2, 9240, 6, 210, 30, 6, 30, 166320, 30, 30, 30, 30030, 6, 9240, 2, 2310, 2310, 30, 2, 2882880, 30, 4620, 30, 210, 6, 120120, 210, 60060, 2310, 30, 6, 232792560, 6, 30, 2310, 30030, 30, 9240, 30, 2310, 2310, 510510, 6, 1396755360, 6, 210, 4620, 2310, 210, 120120, 6
Offset: 1

Views

Author

Antti Karttunen, Nov 16 2016

Keywords

Comments

This sequence can be used as a filter for certain sequences involving Fibonacci numbers as it matches to any sequence that is obtained as f(A000045(n)), where f(n) is any function that depends only on the prime signature of n (see the index entry for "sequences computed from exponents in ...").
Matching in this context means that the sequence a matches with the sequence b iff for all i, j: a(i) = a(j) => b(i) = b(j). In other words, iff the sequence b partitions the natural numbers to the same or coarser equivalence classes (as/than the sequence a) by the distinct values it obtains.

Examples

			From _Michael De Vlieger_, May 18 2017: (Start)
a(6) = 8 because Fibonacci(6) = 8, the multiplicity of the prime factor of 8 is 3; the smallest p^3 = 2^3 = 8.
a(7) = 2 because Fibonacci(7) = 13, the multiplicity of the prime factor of 13 is 1; the smallest p^1 = 2^1 = 2.
a(15) = 30 because Fibonacci(15) = 610. The multiplicities of the prime factors of 610, in order from greatest to least, are {1, 1, 1}, the smallest prime power product p^1 * q^1 * r^1 = 2 * 3 * 5 = 30.
a(18) = 120 because Fibonacci(18) = 2584 = 2^3 * 17 * 19 -> 2^3 * 3 * 5 = 120. (End)
		

Crossrefs

Cf. A286545 (rgs-version of this sequence), A286467.
Cf. A001605 (positions of 2's), A072381 (of 6's).
Sequences with matching equivalence classes: A063375, A105307, A152774.

Programs

  • Mathematica
    Table[If[# == 1, 1, Times @@ MapIndexed[Prime[First[#2]]^#1 &,
    Sort[FactorInteger[#][[All, -1]], Greater]]] &@ Fibonacci@ n, {n, 79}] (* Michael De Vlieger, May 18 2017 *)
  • PARI
    A046523(n) = my(f=vecsort(factor(n)[, 2], , 4), p); prod(i=1, #f, (p=nextprime(p+1))^f[i]) \\ From Charles R Greathouse IV, Aug 17 2011
    f0 = 0; f1 = 1; for(n=1, 10000, write("b278245.txt", n, " ", A046523(f1)); old_f0 = f0; f0 = f1; f1 = f1 + old_f0; );
    
  • Scheme
    (define (A278245 n) (A046523 (A000045 n)))

Formula

a(n) = A046523(A000045(n)).

A286545 Restricted growth sequence of A278245 (prime signature of Fibonacci numbers).

Original entry on oeis.org

1, 1, 2, 2, 2, 3, 2, 4, 4, 4, 2, 5, 2, 4, 6, 6, 2, 7, 4, 8, 6, 4, 2, 9, 10, 4, 8, 8, 2, 11, 4, 8, 6, 4, 6, 12, 6, 6, 6, 13, 4, 11, 2, 14, 14, 6, 2, 15, 6, 16, 6, 8, 4, 17, 8, 18, 14, 6, 4, 19, 4, 6, 14, 13, 6, 11, 6, 14, 14, 20, 4, 21, 4, 8, 16, 14, 8, 17, 4, 22, 20, 6, 2, 23, 8, 6, 8, 22, 4, 24, 25, 13, 8, 4, 13, 26, 8, 14, 13, 27, 4, 17, 6, 20, 20, 6, 4, 28
Offset: 1

Views

Author

Antti Karttunen, May 17 2017

Keywords

Crossrefs

Cf. A001605 (positions of 2's), A072381 (of 4's).

A286566 Compound filter (prime signature of n & prime signature of the n-th Jacobsthal number): a(n) = P(A101296(n), A286566(n)), where P(n,k) is sequence A000027 used as a pairing function.

Original entry on oeis.org

1, 3, 5, 9, 5, 19, 5, 26, 18, 19, 5, 51, 5, 19, 40, 73, 5, 72, 5, 72, 40, 40, 5, 113, 31, 19, 83, 111, 8, 129, 5, 101, 32, 19, 32, 221, 8, 19, 40, 179, 8, 199, 5, 84, 159, 40, 8, 312, 13, 84, 82, 84, 8, 239, 49, 261, 32, 82, 23, 419, 5, 19, 159, 224, 82, 334, 8, 84, 32, 334, 8, 543, 8, 32, 84, 84, 82, 285, 5, 243, 332, 32, 57, 478, 40, 32, 32, 218, 23, 419, 82
Offset: 1

Views

Author

Antti Karttunen, May 21 2017

Keywords

Comments

Here, instead of A046523 and A278165 we use as the components of a(n) their rgs-versions A101296 and A286565 because of the latter sequences' more moderate growth rates.

Crossrefs

Cf. A000978 (positions of 5's).
Cf. A286467 (similar filter).

Programs

Formula

a(n) = (1/2)*(2 + ((A101296(n)+A286565(n))^2) - A101296(n) - 3*A286565(n)).
Showing 1-3 of 3 results.