login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A275068
Squarefree numbers in A022344.
2
1, 5, 11, 19, 29, 31, 41, 55, 59, 61, 71, 79, 89, 95, 101, 109, 131, 139, 145, 149, 151, 155, 179, 181, 191, 199, 205, 209, 211, 229, 239, 241, 251, 269, 271, 281, 295, 305, 311, 319, 331, 341, 349, 355, 359, 379, 389, 395, 401, 409, 419, 421, 431, 439, 445
OFFSET
0,2
COMMENTS
The final digit of every number is 1, 5, or 9. As a set, A022344 consists of the numbers m*F^2, where m is in (1,5,11,19,...) and F is a Fibonacci number.
LINKS
EXAMPLE
A022344 = (1,5,4,9,16,11,19,11,20,31,19,31,45,29,... ), and deletion of 4,9,16,20, ... leaves (1,5,11,19,29,31,...).
MATHEMATICA
g = GoldenRatio; a[n_] := Floor[(n + 1)*g]^2 - n*Floor[(n + 1)*g] - n^2;
u = Table[a[n], {n, 0, 200}] (* A022344 *)
Union[Select[u, SquareFreeQ[#] &]] (* A275068 *)
CROSSREFS
Sequence in context: A336015 A132087 A089270 * A038872 A141158 A239732
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 15 2016
STATUS
approved