OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Vaclav Kotesovec, Graph - the asymptotic ratio (2*10^8 terms)
FORMULA
Multiplicative with a(p^e) = Pell(e+1).
From Vaclav Kotesovec, Feb 11 2022: (Start)
Sum_{k=1..n} a(k) ~ c * n^s, where
s = log(1 + sqrt(2)) / log(2) = 1.271553303163611972...,
c = 8.3717222015175571... = (1 + sqrt(2)) / (2^(3/2) * log(1 + sqrt(2))) * Product_{p primes > 2} 1 / (1 - 2*p^(-s) - p^(-2*s)),
or with better convergence
c = zeta(s)^2 / (sqrt(2) * (1 + sqrt(2)) * log(1 + sqrt(2))) * Product_{p primes > 2} (1 - p^(-s))^2 / (1 - 2*p^(-s) - p^(-2*s)). (End)
MATHEMATICA
f[p_, e_] := Fibonacci[e + 1, 2]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Table[a[n], {n, 1, 90}]
PROG
(PARI) for(n=1, 100, print1(direuler(p=2, n, 1/(1 - 2*X - X^2))[n], ", ")) \\ Vaclav Kotesovec, Feb 10 2022
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Feb 08 2022
STATUS
approved