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.

A003980 Möbius transform of A003965.

This page as a plain text file.
%I A003980 #25 Sep 14 2023 02:30:46
%S A003980 1,1,2,2,4,2,7,4,6,4,12,4,20,7,8,8,33,6,54,8,14,12,88,8,20,20,18,14,
%T A003980 143,8,232,16,24,33,28,12,376,54,40,16,609,14,986,24,24,88,1596,16,56,
%U A003980 20,66,40,2583,18,48,28,108,143,4180,16,6764,232,42,32,80,24,10945,66
%N A003980 Möbius transform of A003965.
%H A003980 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>.
%F A003980 Multiplicative with a(p^e) = (q-1)q^(e-1) were q = Fibonacci(pi(p)+2) = A000045(A000720(p)+2). - _David W. Wilson_, Sep 01 2001
%F A003980 Sum_{n>=1} 1/a(n) = Product_{k>=3} (1 + Fibonacci(k)/(Fibonacci(k)-1)^2) = 9.955734312016908009501... . - _Amiram Eldar_, Sep 14 2023
%t A003980 a[n_] := If[n == 1, 1, Product[{p, e} = pe; q = Fibonacci[PrimePi[p] + 2]; (q-1) q^(e-1), {pe, FactorInteger[n]}]];
%t A003980 Array[a, 100] (* _Jean-François Alcover_, Sep 29 2020 *)
%o A003980 (PARI) a(n) = {my(f = factor(n), p = f[, 1], e = f[, 2], q); prod(i = 1, #p, q = fibonacci(primepi(p[i])+2); (q-1)*q^(e[i]-1));} \\ _Amiram Eldar_, Sep 14 2023
%Y A003980 Cf. A000045, A000720, A003965.
%K A003980 nonn,easy,mult
%O A003980 1,3
%A A003980 _Marc LeBrun_
%E A003980 More terms from _David W. Wilson_, Aug 29 2001