A184812 n+floor(ns/r)+floor(nt/r), where r=sqrt(2), s=sqrt(3), t=sqrt(5).
3, 7, 10, 14, 18, 22, 26, 29, 34, 37, 41, 44, 48, 53, 56, 60, 63, 68, 72, 75, 79, 82, 87, 90, 94, 98, 102, 106, 109, 113, 117, 121, 125, 128, 132, 136, 140, 144, 147, 151, 155, 159, 162, 166, 171, 174, 178, 181, 186, 190, 193, 197, 200, 205, 208, 212, 216
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
r=2^(1/2); s=3^(1/2); t=5^(1/2); a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]; b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]; c[n_]:=n+Floor[n*r/t]+Floor[n*s/t] Table[a[n],{n,1,120}] (* A184812 *) Table[b[n],{n,1,120}] (* A184813 *) Table[c[n],{n,1,120}] (* A184814 *)
-
Maxima
r:sqrt(2)$ s:sqrt(3)$ t:sqrt(5)$ makelist(n+floor(n*s/r)+floor(n*t/r),n,1,50); /* Martin Ettl, Oct 18 2012 */
-
PARI
sr=sqrt(3/2);tr=sqrt(5/2);for(n=1,100,print1(n+floor(n*sr)+floor(n*tr)", ")) \\ Charles R Greathouse IV, Jul 15 2011
Formula
a(n)=n+floor(ns/r)+floor(nt/r), r=sqrt(2), s=sqrt(3), t=sqrt(5).
Comments