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!)
A352340 a(n) is the sum of digits of n in the maximal Pell representation of n (A352339). 5
0, 1, 1, 2, 2, 3, 4, 2, 3, 3, 4, 5, 3, 4, 4, 5, 3, 4, 5, 3, 4, 4, 5, 6, 4, 5, 5, 6, 4, 5, 6, 4, 5, 5, 6, 7, 5, 6, 6, 7, 8, 4, 5, 5, 6, 4, 5, 6, 4, 5, 5, 6, 7, 5, 6, 6, 7, 5, 6, 7, 5, 6, 6, 7, 8, 6, 7, 7, 8, 9, 5, 6, 6, 7, 5, 6, 7, 5, 6, 6, 7, 8, 6, 7, 7, 8, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
A. F. Horadam, Maximal representations of positive integers by Pell numbers, The Fibonacci Quarterly, Vol. 32, No. 3 (1994), pp. 240-244.
FORMULA
a(n) = A007953(A352339(n)).
a(n) >= A265744(n).
MATHEMATICA
pell[1] = 1; pell[2] = 2; pell[n_] := pell[n] = 2*pell[n - 1] + pell[n - 2]; pellp[n_] := Module[{s = {}, m = n, k}, While[m > 0, k = 1; While[pell[k] <= m, k++]; k--; AppendTo[s, k]; m -= pell[k]; k = 1]; IntegerDigits[Total[3^(s - 1)], 3]]; a[n_] := Module[{v = pellp[n]}, nv = Length[v]; i = 1; While[i <= nv - 2, If[v[[i]] > 0 && v[[i + 1]] == 0 && v[[i + 2]] < 2, v[[i ;; i + 2]] += {-1, 2, 1}; If[i > 2, i -= 3]]; i++]; i = Position[v, _?(# > 0 &)]; If[i == {}, 0, Total[v[[i[[1, 1]] ;; -1]]]]]; Array[a, 100, 0]
CROSSREFS
Similar sequences: A053735, A007895, A112310, A265744, A278043, A352104.
Sequence in context: A105689 A351080 A187200 * A117632 A236241 A127731
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Mar 12 2022
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)